app.js 500 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 './filters';
import './directives';
import 'iview/dist/styles/iview.css';
import './fonts/iconfont.css';

Vue.use(yohoPluginCore);
Vue.use(yohoPluginRouter);
Vue.use(yohoPluginAuth);

Vue.render({
    el: '#app',
    template: '<App/>',
    components: {App}
});