vue.js v-for list not updating

后端 未结 3 1819
挽巷
挽巷 2021-02-12 09:50

I have this list:

  • {{ list.personName }}

And th

3条回答
  •  逝去的感伤
    2021-02-12 10:30

    If it's getting passed in as an object from the server, make sure to use Vue.set(obj, key, value) when binding reactively to data().

    http://vuejs.org/api/#Vue-set

提交回复
热议问题