shop.page.js 435 Bytes
/**
 * Created by PhpStorm.
 * User: Targaryen
 * Date: 2016/7/19
 * Time: 16:05
 */
const Vue = require('vue');
const lazyload = require('vue-lazyload');
const infinitScroll = require('vue-infinite-scroll');

require('common/vue-filter')(Vue);
Vue.use(lazyload, {
    preLoad: 3
});
Vue.use(infinitScroll);

const shopBox = require('product/shop/shop-box.vue');

new Vue({
    el: '#shop',
    components: {
        shopBox
    }
});