nebula/pages/index.vue

49 lines
922 B
Vue
Raw Normal View History

2020-06-19 17:10:44 +08:00
<template>
<div>
2020-06-22 17:13:42 +08:00
<article-list :articles="articles" @currentChange="currentChangeArticle"></article-list>
2020-06-19 17:10:44 +08:00
</div>
</template>
2020-06-22 17:13:42 +08:00
<script>
import ArticleList from '~/components/archive/list'
import {mapState} from 'vuex';
2020-07-03 11:04:25 +08:00
export default {
name: 'Index',
fetch({store, query}) {
return Promise.all([
store.dispatch('article/fetchList', {page: query.page || 1})
])
},
watch: {
'$route.query': function () {
this.$store.dispatch('article/fetchList', {page: this.$route.query.page || 1})
}
},
components: {
ArticleList
},
computed: {
...mapState({
articles: state => state.article.list.data
})
},
methods: {
currentChangeArticle(page) {
this.$router.push({
name: 'index',
query: {
page: page
}
2020-08-02 00:25:44 +08:00
})
2020-06-22 17:13:42 +08:00
}
},
mounted() {
this.$store.commit('setActiveMenu', 'index')
2020-06-22 17:13:42 +08:00
}
}
2020-06-22 17:13:42 +08:00
</script>
2020-06-19 17:10:44 +08:00
<style>
</style>