UNPKG
bd-admin
Version:
latest (1.0.12)
1.0.12
1.0.10
1.0.0
一款能根据需求快速配置vue后台管理的脚手架
github.com/lhpCode/bd-admin
lhpCode/bd-admin
bd-admin
/
commands
/
create
/
project_template
/
src
/
store
/
index.js
9 lines
(8 loc)
•
254 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
import
{ createPinia }
from
"pinia"
;
import
piniaPluginPersistedstate
from
"pinia-plugin-persistedstate"
;
const
store =
createPinia
(); store.
use
(piniaPluginPersistedstate);
const
initStore
= (
app
) => { app.
use
(store); };
export
{ store, initStore };