favorite-article.page.js
312 Bytes
import Vue from 'vue';
import infiniteScroll from 'vue-infinite-scroll';
import favArticleList from 'me/fav-article-list.vue';
import yoho from 'yoho';
Vue.use(infiniteScroll);
yoho.ready(() => {
new Vue({
el: '#fav-content',
components: {
favArticleList
}
});
});