app.js
548 Bytes
import Vue from 'vue';
import App from './pages/app';
import yohoPluginCore from './plugins/yoho-plugin-core';
import yohoPluginRouter from './plugins/yoho-plugin-router';
import yohoPluginAuth from './plugins/yoho-plugin-auth';
import yohoPluginCache from './plugins/yoho-plugin-cache';
import './statics/scss/base.scss';
import './filters';
import './directives';
Vue.use(yohoPluginCore);
Vue.use(yohoPluginRouter);
Vue.use(yohoPluginAuth);
Vue.use(yohoPluginCache);
Vue.render({
el: '#app',
template: '<App/>',
components: { App },
});