为了账号安全,请及时绑定邮箱和手机立即绑定

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>

https://img1.sycdn.imooc.com//5d3fa5e40001c93410480941.jpg

正在回答

1 回答

找到问题原因了,list页面里computed:{
      pageList(){
        //每次 监听stroe里list 的状态 变化
      return store.state.newList

//其中newList是store.js文件里state里定义的数据
      }
    }

1 回复 有任何疑惑可以回复我~
#1

Brian

不错,能够找到问题,这样自己记忆也深刻
2019-07-30 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

list页面上computed监听的pageList 没有数据,add添加页面可以正常添加到store里

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信