From 41403beaecbc7ffbd7823f00e8e6fa9615cd9d0e Mon Sep 17 00:00:00 2001 From: inter Date: Mon, 8 Sep 2025 16:38:18 +0800 Subject: [PATCH] Add File --- frontend/src/main.ts | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 frontend/src/main.ts diff --git a/frontend/src/main.ts b/frontend/src/main.ts new file mode 100644 index 0000000..f81e9fc --- /dev/null +++ b/frontend/src/main.ts @@ -0,0 +1,17 @@ +import { createApp } from 'vue' +import { createPinia } from 'pinia' +import './style.less' +import App from './App.vue' +import router from './router' +import { i18n } from './i18n' +import VueDOMPurifyHTML from 'vue-dompurify-html' + +// import 'element-plus/dist/index.css' +const app = createApp(App) +const pinia = createPinia() + +app.use(pinia) +app.use(router) +app.use(i18n) +app.use(VueDOMPurifyHTML) +app.mount('#app')