import 'lib-flexible/flexible' import Vue from 'vue' import App from './App.vue' import router from './router' import store from './store' import Config from './config' Vue.config.productionTip = false Config.VuePlugin.forEach(v => Vue.use(v)) Config.NotVuePlugin.forEach(v => Vue.prototype[v.n] = v.v) new Vue({ router, store, render: h => h(App) }).$mount('#app')