培训机构评价机构

This commit is contained in:
2026-02-24 10:06:48 +08:00
parent a8a9d792a3
commit 8a91bef819
12 changed files with 5181 additions and 0 deletions

View File

@@ -16,6 +16,7 @@ import Empty from './components/empty/empty.vue';
import NoBouncePage from '@/components/NoBouncePage/NoBouncePage.vue'
import MsgTips from '@/components/MsgTips/MsgTips.vue'
import SelectPopupPlugin from '@/components/selectPopup/selectPopupPlugin';
import unieditor from '@/packageB/components/unieditor.vue'
import storeRc from './utilsRc/store/index.js'
import {processFileUrl,} from '@/utilsRc/common.js'
// iconfont.css 已在 App.vue 中通过 @import 引入,无需在此处重复引入
@@ -44,6 +45,7 @@ export function createApp() {
app.component('Empty', Empty)
app.component('NoBouncePage', NoBouncePage)
app.component('MsgTips', MsgTips)
app.component('unieditor', unieditor)
app.config.globalProperties.$processFileUrl = processFileUrl;
@@ -74,6 +76,7 @@ export function createApp() {
app.provide('deviceInfo', globalFunction.getdeviceInfo());
app.use(SelectPopupPlugin);
// app.use(unieditor);
app.use(Pinia.createPinia());
// 注册vuex
app.use(storeRc);