blessing-skin-server/resources/assets/src/index.ts
2019-04-27 22:06:09 +08:00

33 lines
852 B
TypeScript

import Vue from 'vue'
import loadI18n from './scripts/i18n-text'
import './scripts'
import * as emitter from './scripts/event'
import routes from './scripts/route'
Vue.config.productionTip = false
loadI18n().then(loadModules)
function loadModules() {
const route = routes.find(
// eslint-disable-next-line no-shadow
route => (new RegExp(`^${route.path}$`, 'i')).test(blessing.route)
)
if (route) {
if (route.module) {
Promise.all(route.module.map(m => m()))
}
if (route.component) {
Vue.prototype.$route = (new RegExp(`^${route.path}$`, 'i')).exec(blessing.route)
// eslint-disable-next-line no-new
new Vue({
el: route.el,
mounted() {
setTimeout(() => emitter.emit('mounted', { el: route.el }), 100)
},
render: h => h(route.component),
})
}
}
}