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>