vue是声明式编程,只需要告诉程序需要什么效果,其他的交给程序完成,即基于vue模板语法的网页结构和最终效果基本一致。
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="vue.js"></script>
<style type="text/css">
.active{
border: 1px, solid;
background: green;
}
.img{
height: 180px;
width: 180px;
}
.test{
width: 180px;
}
.test> button{
width: calc(180px /3 );
}
</style>
</head>
<body>
<div id="app">
<div class="test"><button @click='b'>香蕉</button><button @click='c'>橘子</button><button @click='a'>苹果</button></div>
<div><img class="img" :src='url'></div>
</div>
<script type="text/javascript">
Vue.config.keyCodes.aaa= 65
var app = new Vue({
el: '#app',
data:{
url:'img/a.png'
},
methods:{
a:function(){
this.url='img/a.png'
},
b:function(){
this.url='img/b.png'
},
c:function(){
this.url='img/o.png'
}
}
})
</script>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="vue.js"></script>
<style type="text/css">
.active{
border: 1px, solid;
background: green;
}
.img{
height: 180px;
width: 180px;
}
.test{
width: 180px;
}
.test> button{
width: calc(180px /3 );
}
.show{
display: block;
}
img{
display: none;
}
</style>
</head>
<body>
<div id="app">
<div>
<ul>
<li @click='change(index)' :key='index' v-for='(item,index) in fruit'>{{ item.name }}</li> //传递index
</ul>
</div>
<div>
<ul>
<img :class='current==index?"show":""' :key='index' :src='item.url' v-for='(item,index) in fruit'>
</ul>
</div>
</div>
<script type="text/javascript">
Vue.config.keyCodes.aaa= 65
var app = new Vue({
el: '#app',
data:{
current:0,
fruit:[
{
id:'0',
name:'apple',
url:'img/a.png'
},
{
id:'1',
name:'orange',
url:'img/o.png'
},
{
id:'2',
name:'banana',
url:'img/b.png'
}]
},
methods:{
change:function(index){
this.current=index;
}
}
})
</script>
</body>
</html>
原文:https://www.cnblogs.com/guojuboke/p/12324116.html