order-detail.page.js
341 Bytes
/**
* order-detail.page.js.
* @author hgwang
* @date 2016-07-23
*/
'use strict';
import Vue from 'vue';
import OrderDetail from 'me/order-detail.vue';
import yoho from 'yoho';
import 'common/count-down';
yoho.ready(() => {
new Vue({
el: '#order-detail',
components: {
OrderDetail
}
});
});