// 引入Vue
import Vue from "vue";
// 引入App
import App from "./App";
// 引入插件
import plugins from "./plugins"
// 设置Vue
Vue.config.productionTip = false
// 使用插件
Vue.use(plugins)
// 实例化Vue
new Vue({
components: {
App
},
render: h => h(App)
}).$mount('#app')