2018-09-19Vue图片切换

2018-09-19  本文已影响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>

上一篇下一篇

猜你喜欢

热点阅读