coin.page.js
286 Bytes
/**
* coin.page.js.
* @author hgwang
* @date 2016-07-27
*/
'use strict';
import Vue from 'vue';
import coin from 'me/coin-detail.vue';
import infiniteScroll from 'vue-infinite-scroll';
Vue.use(infiniteScroll);
new Vue({
el: '#app',
components: {
coin
}
});