summaryrefslogtreecommitdiff
path: root/ATRI/plugins/manege/atri-manege/src/main.js
diff options
context:
space:
mode:
authorKyomotoi <[email protected]>2021-07-20 13:42:00 +0800
committerKyomotoi <[email protected]>2021-07-20 13:42:00 +0800
commitc485985d3be687d17168512de44ea7b744fea7cc (patch)
tree4f54f574dd42dbed01e50ecbf1efd82c7cc009b9 /ATRI/plugins/manege/atri-manege/src/main.js
parent0fe5599a0770401812e44727904a55d53415cf6c (diff)
downloadATRI-c485985d3be687d17168512de44ea7b744fea7cc.tar.gz
ATRI-c485985d3be687d17168512de44ea7b744fea7cc.tar.bz2
ATRI-c485985d3be687d17168512de44ea7b744fea7cc.zip
✨ 新增前端demo页
Diffstat (limited to 'ATRI/plugins/manege/atri-manege/src/main.js')
-rw-r--r--ATRI/plugins/manege/atri-manege/src/main.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/ATRI/plugins/manege/atri-manege/src/main.js b/ATRI/plugins/manege/atri-manege/src/main.js
new file mode 100644
index 0000000..917702d
--- /dev/null
+++ b/ATRI/plugins/manege/atri-manege/src/main.js
@@ -0,0 +1,12 @@
+import Vue from 'vue'
+import App from './App.vue'
+import router from './router'
+import vuetify from './plugins/vuetify'
+
+Vue.config.productionTip = false
+
+new Vue({
+ router,
+ vuetify,
+ render: h => h(App)
+}).$mount('#app')