favorite.page.js 277 Bytes
const Vue = require('yoho-vue');
const infiniteScroll = require('yoho-vue-infinite-scroll');
const ProductList = require('home/fav-product-list.vue');

Vue.use(infiniteScroll);

new Vue({
    el: '#fav-content',
    components: {
        'favProductList': ProductList
    }
});