• This project
    • Loading...
  • Sign in

fe / yohoblk-wap · Files

Go to a project

GitLab

  • Go to group
  • Project
  • Activity
  • Files
  • Commits
  • Pipelines 0
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Members
  • Labels
  • Wiki
  • Forks
  • Network
  • Create a new issue
  • yohoblk-wap
  • public
  • js
  • channel
  • brand-list.page.js
  • lazyload
    878a02cb
    by 郭成尧
    2016-07-21 09:39:01 +0800  
    Browse Files
brand-list.page.js 360 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/**
 * Created by PhpStorm.
 * User: Targaryen
 * Date: 2016/7/20
 * Time: 14:13
 */

const Vue = require('yoho-vue');
const lazyload = require('yoho-vue-lazyload');
const brandListBox = require('channel/brand-list-box.vue');

require('common/vue-filter');

Vue.use(lazyload);

new Vue({
    el: '#brand-list',
    components: {
        brandListBox
    }
});