<template>
<div>
<img :src="url" alt="">
<button>1</button>
<button>2</button>
<button>3</button>
</div>
</template>
<script>
export default{
data(){
return{
url:"2.模板语法/vue1/public/favicon.ico"
}
}
}
</script>
<style>
img{
width: 100px;
height: 100px;
}
</style>

很明显的问题啊,就是找不到图片路径啊,如果你启动项目之后,并且你的图片是存放在项目目录下的
/publuc
目录里面,直接用/
就行了,比如说你的示例中的其实路径应该为/favicon.ico