上传前端测试

This commit is contained in:
橙子
2021-10-10 17:10:35 +08:00
parent ac1d398e69
commit 945437a2eb
30 changed files with 11061 additions and 0 deletions

12
vuetify-test/src/main.js Normal file
View File

@@ -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: function(h) { return h(App) }
}).$mount('#app')