代码都是跟老师写的一样,可是点击没有任何反应
<template>
<div name="show">
<ul>
<li v-for:="good in list">
<img v-bind:src="good.img" />
<p>{{ good.goodName }}</p>
</li>
</ul>
<img src="img/tieta.png" />
</div>
</template>
<script>
export default {
name: "show",
data() {
var obj = this;
this.$http.get("json/bjb.json").then(function (res) {
obj.list = res.data;
});
return {
list: [],
};
},
}
</script>
看看控制台报错是什么,JSON里面有没有写错,或者图片文件路径