You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
359 B

import Vue from 'vue';
import { router } from './config/router';
import './config/rem';
import App from './App.vue';
import VueLazyload from 'vue-lazyload'
import components from './config/components.js';
import { Dialog } from 'vant';
Vue.use(components);
Vue.use(VueLazyload);
Vue.use(Dialog);
new Vue({
router,
el: '#app',
render: h => h(App)
});