右側沒有反應
代碼都是跟老師寫的一樣,可是點擊沒有任何反應
<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>
2021-06-24
看看控制臺報錯是什么,JSON里面有沒有寫錯,或者圖片文件路徑