• 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
  • product
  • shop-share.page.js
  • 65%
    4486f3b4
    by 陈峰
    2017-08-04 16:08:43 +0800  
    Browse Files
shop-share.page.js 311 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/22
 * Time: 14:30
 */

import Vue from 'vue';
import lazyload from 'vue-lazyload';
import shareBox from 'product/shop/share-box.vue';

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

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