brand.page.js 525 Bytes
/**
 * Created by PhpStorm.
 * User: Targaryen
 * Date: 2016/7/19
 * Time: 16:05
 */
const Vue = require('yoho-vue');
const lazyload = require('yoho-vue-lazyload');
const contentCode = require('content-code');
const qs = require('yoho-qs');

const brandBox = require('channel/brand-box.vue');

new Vue({
    el: '#brand',
    data() {
        return {
            page: 'brand',
            contentCode: contentCode.brand[qs.brand || 'men']
        };
    },
    components: {
        brandBox
    }
});

Vue.use(lazyload);