美文网首页
2018-09-19Vue图片切换

2018-09-19Vue图片切换

作者: 简单浪 | 来源:发表于2018-09-19 10:30 被阅读0次

<div id="box">
<img v-bind:src="url" v-on:click="alt"/>
</div>
<script src="js/vue.js"></script>
<script>
new Vue({
el:'#box',
data:{
url:'img/index.jpg',
flag:true
},
methods:{
alt:function(){
if(this.flag){
this.url='img/inex.jpg'
this.flag=false
}else{
this.url='img/index.jpg'
this.flag=true
}
}
}
})
</script>

相关文章

网友评论

      本文标题:2018-09-19Vue图片切换

      本文链接:https://www.haomeiwen.com/subject/ufwbnftx.html