9/18 23:20

This commit is contained in:
kun
2019-09-18 23:19:04 +08:00
parent f60ff668a0
commit dd5f652106
56 changed files with 18716 additions and 6 deletions

22
src/main.js Normal file
View File

@@ -0,0 +1,22 @@
import Vue from 'vue'
import App from './App.vue'
import router from './router'
import store from './store'
import '../static/css/reset.css'
import '../static/css/swiper.css'
import '../static/fonts/iconfont.css'
Vue.prototype.$jump = function (url) {
this.$router.push({
name: url
})
}
Vue.config.productionTip = false
new Vue({
router,
store,
render: h => h(App)
}).$mount('#app')