import Vue from 'vue' import App from './App.vue' // 控制台 // import vConsole from 'vconsole' // vant import Vant from 'vant'; import { Notify } from 'vant'; import { Toast } from 'vant'; import 'vant/lib/index.css'; // router import router from './router' // api import api from "./api" // Vue.prototype.$vConsole = new vConsole(); Vue.use(Vant); Vue.prototype.$api = api; Vue.prototype.$notify = Notify; Vue.prototype.$toast = Toast; Vue.config.productionTip = false new Vue({ el: '#app', router, render: h => h(App), });