• 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
  • home
  • refund-order.page.js
  • 增加yoho币,退换货
    38344f72
    by 王洪广
    2016-07-27 11:16:20 +0800  
    Browse Files
refund-order.page.js 390 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 22
/**
 * refund-order.page.
 * @author hgwang
 * @date 2016-07-26
 */
'use strict';

const Vue = require('yoho-vue');
const refundOrder = require('home/refund-order.vue');
const infiniteScroll = require('yoho-vue-infinite-scroll');

Vue.use(infiniteScroll);

require('common/vue-filter');

new Vue({
    el: '#refund-order-list',
    data: {},
    components: {
        refundOrder
    }
});