• 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
  • home.page.js
  • vue 2.0 80%
    c4b0ed4c
    by 陈峰
    2017-08-07 17:32:23 +0800  
    Browse Files
home.page.js 314 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
import Vue from 'vue';
import lazyload from 'vue-lazyload';
import infinitScroll from 'vue-infinite-scroll';

import channel from 'channel/index.vue';
import 'common/count-down';

Vue.use(lazyload, { preLoad: 3 });
Vue.use(infinitScroll);

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