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.
16 lines
309 B
16 lines
309 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';
|
|
Vue.use(components);
|
|
|
|
Vue.use(VueLazyload)
|
|
|
|
new Vue({
|
|
router,
|
|
el: '#app',
|
|
render: h => h(App)
|
|
}); |