0👍
convert this
<li v-for="item in domains" :key="item.post_name">
to
<li v-for="item in domains" :key="item">
and if this doesn’t work, add index as key
<li v-for="(item,idx) in domains" :key="idx">
- [Vuejs]-Format currencies in a Vue component?
- [Vuejs]-Why can't I load data from vuex when I refresh site?
0👍
Please disregard this. I jumped the gun and posted the question before I knew what was wrong.
- [Vuejs]-JQuery has outdated data after vue changes
- [Vuejs]-V-model not working with javascript functions
Source:stackexchange.com