[盘债计算器]

This commit is contained in:
2023-06-21 17:04:42 +08:00
commit f2e1454a83
37 changed files with 4165 additions and 0 deletions

18
main.js Normal file
View File

@@ -0,0 +1,18 @@
import Vue from 'vue'
import App from './App'
import store from './store'
// 导入组件库-海报
import VueCanvasPoster from 'vue-canvas-poster'
// 注册组件库-海报
Vue.use(VueCanvasPoster)
Vue.prototype.$store = store
App.mpType = 'app'
const app = new Vue({
...App
})
app.$mount()