123456789101112131415 |
- import Vue from 'vue';
- import router from './router';
- import store from './store';
- import './element';
- import App from './components/App.vue';
- //Vue.config.productionTip = false;
- Vue.prototype.$isMobileDevice = /Android|webOS|iPhone|iPad|iPod|BlackBerry/i.test(navigator.userAgent);
- new Vue({
- router,
- store,
- render: h => h(App),
- }).$mount('#app');
|