list頁面上computed監聽的pageList 沒有數據,add添加頁面可以正常添加到store里
<template>
? <div>
??? 新聞列表
?<ul>
????? <li v-for="(item,index) in pageList"
????????? :key="index">
??????? {{item.title}}-{{item.content}}
????? </li>
??? </ul>
? </div>
</template>
<script>
? import store from '@/store'
? export default{
??? name:'List',
??? store,
??? computed:{
????? pageList(){
??????? return store.state.lists
????? }
??? }
? }
</script>
2019-07-30
找到問題原因了,list頁面里computed:{
????? pageList(){
??????? //每次 監聽stroe里list 的狀態 變化
????? return store.state.newList
//其中newList是store.js文件里state里定義的數據
????? }
??? }