直接上内容

错误方法

<template>
	<div>
		<img v-for= "item in toDoListDate" :key = "item.id" :src="item.imgSrc">
	<div>
</template>

<script>
export default{

}
data() {
	return {
		toDoListDate: [
        { id: 1, name: '即将响应超时', number: 20, imgSrc: '../common/img/group1.webp' },
        { id: 2, name: '即将完成超时', number: 21, imgSrc: '../common/img/group2.webp' },
        
      ],
	};
},
</script>

这种做法拿不到本地图片

解决方法如下,在导入路径时使用 require

<template>
	<div>
		<img v-for= "item in toDoListDate" :key = "item.id" :src="item.imgSrc">
	<div>
</template>

<script>
export default{

}
data() {
	return {
		toDoListDate: [
        { 
          id: 1,
          name: '即将响应超时',
          number: 20, 
          imgSrc:require ('../common/img/group1.webp') 
          },
        { 
          id: 2, 
          name: '即将完成超时', 
          number: 21, imgSrc: require('../common/img/group2.webp') 
         },
        
      ],
	};
},
</script>

这样即可显示

如果还不显示并且,网页查找元素显示[object module]

则:加  default  即可

require ('../common/img/group1.webp').default

GitHub 加速计划 / vu / vue
207.54 K
33.66 K
下载
vuejs/vue: 是一个用于构建用户界面的 JavaScript 框架,具有简洁的语法和丰富的组件库,可以用于开发单页面应用程序和多页面应用程序。
最近提交(Master分支:2 个月前 )
73486cb5 * chore: fix link broken Signed-off-by: snoppy <michaleli@foxmail.com> * Update packages/template-compiler/README.md [skip ci] --------- Signed-off-by: snoppy <michaleli@foxmail.com> Co-authored-by: Eduardo San Martin Morote <posva@users.noreply.github.com> 4 个月前
e428d891 Updated Browser Compatibility reference. The previous currently returns HTTP 404. 5 个月前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐