favorite-brand.page.js 418 Bytes
const Vue = require('vue');
const infiniteScroll = require('vue-infinite-scroll');
const favBrandList = require('me/fav-brand-list.vue');
const VueTouch = require('vue-touch');
const yoho = require('yoho');

require('common/vue-filter')(Vue);

Vue.use(VueTouch);
Vue.use(infiniteScroll);

yoho.ready(() => {
    new Vue({
        el: '#fav-content',
        components: {
            favBrandList
        }
    });
})