main.js 363 B

123456789101112131415
  1. import Vue from 'vue';
  2. import router from './router';
  3. import store from './store';
  4. import './element';
  5. import App from './components/App.vue';
  6. //Vue.config.productionTip = false;
  7. Vue.prototype.$isMobileDevice = /Android|webOS|iPhone|iPad|iPod|BlackBerry/i.test(navigator.userAgent);
  8. new Vue({
  9. router,
  10. store,
  11. render: h => h(App),
  12. }).$mount('#app');