brand-list.page.js
355 Bytes
/**
* Created by PhpStorm.
* User: Targaryen
* Date: 2016/7/20
* Time: 14:13
*/
const Vue = require('vue');
const lazyload = require('vue-lazyload');
const brandListBox = require('channel/brand-list-box.vue');
require('common/vue-filter')(Vue);
Vue.use(lazyload);
new Vue({
el: '#brand-list',
components: {
brandListBox
}
});