refactor(添加pinia数据持久化,添加package依赖): 🎨 添加fastcrud在setting.ts的公共配置
This commit is contained in:
@@ -1,20 +1,21 @@
|
||||
import { createApp } from 'vue';
|
||||
import pinia from '/@/stores/index';
|
||||
import App from './App.vue';
|
||||
import router from './router';
|
||||
import { directive } from '/@/utils/directive';
|
||||
import { i18n } from '/@/i18n/index';
|
||||
import other from '/@/utils/other';
|
||||
|
||||
import ElementPlus from 'element-plus';
|
||||
import 'element-plus/dist/index.css';
|
||||
import '/@/theme/index.scss';
|
||||
import mitt from 'mitt';
|
||||
import VueGridLayout from 'vue-grid-layout';
|
||||
|
||||
import piniaPersist from 'pinia-plugin-persist'
|
||||
// @ts-ignore
|
||||
import fastCrud from './settings.ts'
|
||||
import pinia from './stores';
|
||||
|
||||
const app = createApp(App);
|
||||
pinia.use(piniaPersist)
|
||||
|
||||
directive(app);
|
||||
other.elSvg(app);
|
||||
|
||||
Reference in New Issue
Block a user