无法通过vuejs和cloudshell显示图像

问题描述 投票:0回答:1
          <template slot="items"  slot-scope="props">
              <tr>
                  <td><img src='/situation/static/my-images/Teste.png'                                    
                     style = "widht: 251px; height: 209px" ></td>
                  <td>{{props.item.name}}</td>
                  <td class="text-xs-center">{{ props.item.desc }}</td>
                  <td class="text-xs-center">{{ props.item.cam }}</td>
                  <td class="text-xs-center">{{ props.item.rating }}</td>
                  <td class="text-xs-center">{{ props.item.price }}</td>
              </tr>
          </template>

[当我尝试运行上述代码时,该图像未出现在localhost:3000中。当我在应有的位置使用检查元素时,它表明已引用了正确的位置,但未显示任何内容。该怎么办?

image vue.js google-cloud-platform nuxt.js google-cloud-shell
1个回答
0
投票
您没有关闭图像标签。尝试如下关闭图像标签:
© www.soinside.com 2019 - 2024. All rights reserved.