brand-list.page.js
320 Bytes
/**
* Created by PhpStorm.
* User: Targaryen
* Date: 2016/7/20
* Time: 14:13
*/
import Vue from 'vue';
import lazyload from 'vue-lazyload';
import brandListBox from 'channel/brand-list-box.vue';
Vue.use(lazyload, { preLoad: 3 });
new Vue({
el: '#brand-list',
components: {
brandListBox
}
});