Vue之ES6的import导入图片路径用法
<script>import img_index_path from '../../assets/img/index_1.png';import img_myself_path from '../../assets/img/myself_0.png';// 输出的路径是变化的:“/img/index_1.68c713f2.png”// 所以说...
·
<script>
import img_index_path from '../../assets/img/index_1.png';
import img_myself_path from '../../assets/img/myself_0.png';
// 输出的路径是变化的:“/img/index_1.68c713f2.png”
// 所以说导入图片路径不能用字符串变量方式来传递参数,必须import导入图片!
console.log( img_index_path );
export default {
name: 'footer',
data () {
return {
img_index_path: img_index_path,
img_myself_path: img_myself_path
};
}
};
</script>
更多推荐
已为社区贡献42条内容
所有评论(0)