favorite.page.js 278 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: {
        'fav-product-list': ProductList
    }
});