| | |
| | | import ElementPlus from 'element-plus' |
| | | import zhCn from 'element-plus/dist/locale/zh-cn.mjs' |
| | | import 'element-plus/dist/index.css' |
| | | import VXETable from 'vxe-table' |
| | | // ...纯表格 |
| | | import VxeTable from 'vxe-table' |
| | | import 'vxe-table/lib/style.css' |
| | | |
| | | // ...可选 UI |
| | | import VxeUI from 'vxe-pc-ui' |
| | | import 'vxe-pc-ui/lib/style.css' |
| | | import i18n from "@/lang" |
| | | import print from 'vue3-print-nb' |
| | | import { hiPrintPlugin } from "vue-plugin-hiprint" |
| | | hiPrintPlugin.disAutoConnect() |
| | | |
| | | |
| | | |
| | | const app = createApp(App) |
| | | const pinia = createPinia() |
| | | pinia.use(piniaPluginPersistedstate ) |
| | | app.use(VXETable) |
| | | app.use(VxeUI) |
| | | app.use(VxeTable) |
| | | app.use(pinia) |
| | | app.use(router) |
| | | app.use(ElementPlus,{ |
| | |
| | | }) |
| | | app.use(i18n) |
| | | app.use(print) |
| | | app.use(hiPrintPlugin) |
| | | |
| | | app.mount('#app') |