brand-share.page.js
364 Bytes
/**
* Created by PhpStorm.
* User: Targaryen
* Date: 2016/7/22
* Time: 14:30
*/
const Vue = require('yoho-vue');
const lazyload = require('yoho-vue-lazyload');
const brandShareBox = require('channel/brand-share-box.vue');
require('common/vue-filter');
Vue.use(lazyload);
new Vue({
el: '#brand-share',
components: {
brandShareBox
}
});