article.vue
915 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<template>
<LayoutApp :show-back="false" :hideHeader="hideHeader" :no-safe-area="true">
<waterfall :listData="articleList"></waterfall>
</LayoutApp>
</template>
<script>
import LayoutApp from '../../components/layout/layout-app';
import {createNamespacedHelpers} from 'vuex';
import waterfall from './components/waterfall';
const {mapActions, mapState} = createNamespacedHelpers('article/articleList');
export default {
name: 'article.vue',
components: {
LayoutApp,
waterfall
},
props: ['hideHeader'],
data() {
return {
listData: []
};
},
mounted() {
},
activated() {
},
computed: {
...mapState(['articleList'])
},
asyncData({store, router}) {
return store.dispatch('article/articleList/fetchArticleList', {productSkn: 10000100});
},
methods: {
...mapActions(['fetchArticleList'])
},
};
</script>
<style lang="scss" scoped>
</style>