<div id="app">
<div>{{msg}}</div>
<div>{{1+2}}</div>
<div>{{msg + "------------"+123}}</div>
</div>
<script src="js/vue.js"></script>
<script>
var vm = new Vue({
el: "#app",
data: {
msg: "Hello Vue"
}
})
</script>
用法和v-text 相似 但是他可以将HTML片段填充到标签中
可能有安全问题, 一般只在可信任内容上使用 v-html
,永不用在用户提交的内容上
它与v-text区别在于v-text输出的是纯文本,浏览器不会对其再进行html解析,但v-html会将其当html标签解析后输出。
<style>
[v-cloak] {
display: none;
}
</style>
</head>
<body>
<div id="app">
<div v-cloak>{{msg}}</div>
</div>
<script src="js/vue.js"></script>
<script text/javascript>
var vm = new Vue({
el: "#app",
data: {
msg: "Hello Vue"
}
})
</script>
</body>
<div id="app">
<div v-cloak>{{msg}}</div>
<div v-once>{{info}}</div>
</div>
<script src="js/vue.js"></script>
<script text/javascript>
var vm = new Vue({
el: "#app",
data: {
msg: "Hello Vue",
info: "nihao"
}
})
</script>
</body>
、
中使用<div id="app">
<div>{{msg}}</div>
<div>
<input type="text" v-model="msg">
</div>
</div>
<script src="js/vue.js"></script>
<script text/javascript>
var vm = new Vue({
el: "#app",
data: {
msg: "Hello Vue",
}
})
</script>
<body>
<div id="app">
<div>{{num}}</div>
<div>
<button v-on:click="handle1">点击1</button>
<button @click="handle2(123,'zhangsan',$event)">点击2</button>
</div>
</div>
<script src="js/vue.js"></script>
<script text/javascript>
var vm = new Vue({
el: "#app",
data: {
num: 0
},
methods: {
handle2: function(p, p1, event) {
// 这里的this就是vm实例对象
console.log(p, p1);
console.log(event.target.innerHTML);
this.num++
},
handle1: function(event) {
console.log(event.target.innerHTML);
}
}
});
</script>
</body>
event.preventDefault()
或 event.stopPropagation()
是非常常见的需求。v-on
提供了事件修饰符 <div id="app">
<div>{{num}}</div>
<div v-on:click=" handle0">
<button v-on:click.stop="handle1">点击1</button>
</div>
<div>
<a href="http://www.baidu.com" v-on:click.prevent="handle2">百度</a>
</div>
<h2 style="color:blue">123</h2>
</div>
<script src="js/vue.js"></script>
<script text/javascript>
var vm = new Vue({
el: "#app",
data: {
num: 0
},
methods: {
handle0: function() {
this.num++
},
handle1: function(event) {
// 阻止冒泡
// event.stopPropagation();
},
handle2: function(event) {
// 值默认行为
// event.preventDefault();
}
}
});
</script>
v-on
在监听键盘事件时添加按键修饰符 <div id="app">
<form action="">
<div>
用户名:
<input type="text" v-on:keyup.delete="clearContent" v-model="uname">
</div>
<div>
密码:
<input type="password" v-on:keyup.enter="handleSubmit" v-model="pwd">
</div>
<div>
<input type="button" v-on:click="handleSubmit" value="提交">
</div>
</form>
</div>
<script src="js/vue.js"></script>
<script>
var vm = new Vue({
el: "#app",
data: {
uname: "",
pwd: ""
},
methods: {
handleSubmit: function() {
console.log(this.uname, this.pwd);
},
clearContent: function() {
this.uname = ""
}
}
})
</script>
config.keyCodes
自定义按键修饰符别名 <div id="app">
<input type="text" v-on:keyup.aaa="handle" v-model="info">
</div>
<script src="js/vue.js"></script>
<script text/javascript>
Vue.config.keyCodes.aaa = 65;
var vm = new Vue({
el: "#app",
data: {
info: ""
},
methods: {
handle: function(event) {
console.log(event.keyCode);
}
}
})
</script>
<!-- 绑定一个属性 -->
<img v-bind:src="imageSrc">
<!-- 缩写 -->
<img :src="imageSrc">
1、 v-bind 中支持绑定一个对象
如果绑定的是一个对象 则 键为 对应的类名 值 为对应data中的数据
<!--
HTML最终渲染为 <ul class="box textColor textSize"></ul>
注意:
textColor,textSize 对应的渲染到页面上的CSS类名
isColor,isSize 对应vue data中的数据 如果为true 则对应的类名 渲染到页面上
当 isColor 和 isSize 变化时,class列表将相应的更新,
例如,将isSize改成false,
class列表将变为 <ul class="box textColor"></ul>
-->
<ul class="box" v-bind:class="{textColor:isColor, textSize:isSize}">
<li>学习Vue</li>
<li>学习Node</li>
<li>学习React</li>
</ul>
<div v-bind:style="{color:activeColor,fontSize:activeSize}">对象语法</div>
<sript>
var vm= new Vue({
el:'.box',
data:{
isColor:true,
isSize:true,
activeColor:"red",
activeSize:"25px",
}
})
</sript>
<style>
.box{
border:1px dashed #f0f;
}
.textColor{
color:#f00;
background-color:#eef;
}
.textSize{
font-size:30px;
font-weight:bold;
}
</style>
2、 v-bind 中支持绑定一个数组 数组中classA和 classB 对应为data中的数据
这里的classA 对用data 中的 classA
这里的classB 对用data 中的 classB
<ul class="box" :class="[classA, classB]">
<li>学习Vue</li>
<li>学习Node</li>
<li>学习React</li>
</ul>
<script>
var vm= new Vue({
el:'.box',
data:{
classA:‘textColor‘,
classB:‘textSize‘
}
})
</script>
<style>
.box{
border:1px dashed #f0f;
}
.textColor{
color:#f00;
background-color:#eef;
}
.textSize{
font-size:30px;
font-weight:bold;
}
</style>
<div id="app">
<div v-bind:style="{border: borderStyle, width: widthStyle, height: heightStyle}"></div>
<div v-bind:style="objStyles"></div>
<div v-bind:style="[objStyles,overrideStyles ]"></div>
<button v-on:click="handle">切换</button>
</div>
<script src="js/vue.js"></script>
<script text/javascript>
var vm = new Vue({
el: "#app",
data: {
borderStyle: "2px solid pink",
widthStyle: "100px",
heightStyle: "200px",
objStyles: {
border: "3px solid skyblue",
width: "200px",
height: "100px"
},
overrideStyles: {
border: "1px solid green",
backgroundColor: "rgb(129, 187, 129)"
}
},
methods: {
handle: function() {
this.heightStyle = "50px";
this.objStyles.width = "50px"
}
}
})
</script>
<div id="app">
<div v-if="score >= 90">优</div>
<div v-else-if="score < 90 && score >= 80">良</div>
<div v-else-if="score<80&&score>=60">中</div>
<div v-else>差</div>
<div v-show="flag">测试v-show</div>
<button v-on:click="handle">切换</button>
</div>
<script src="js/vue.js"></script>
<script>
var vm = new Vue({
el: "#app",
data: {
score: 50,
flag: false
},
methods: {
handle: function() {
this.flag = !this.flag
}
}
});
</script>
<div id="app">
<ul>
<li v-for="item in fruits">{{item}}</li>
<li v-for="(item,index) in fruits">{{item + "---" + index}}</li>
<li :key="item.id" v-for="(item, index) in myFruits">
<span>{{item.ename}}</span>
<span>-------------</span>
<span>{{item.cname}}</span>
</li>
</ul>
</div>
<script src="js/vue.js"></script>
<script>
var vm = new Vue({
el: "#app",
data: {
fruits: ["apple", "orange", "lemon"],
myFruits: [{
id: 1,
ename: "apple",
cname: "苹果"
}, {
id: 2,
ename: "orange",
cname: "句子"
}, {
id: 3,
ename: "lemon",
cname: "柠檬"
}, ]
},
methods: {}
})
</script>
<ul>
<li v-for="item in items" :key="item.id">...</li>
</ul>
`
<div id="app">
<div class="tab">
<ul>
<li class="active">appleli>
<li class="">orangeli>
<li class="">lemonli>
ul>
<div class="current"><img src="img/apple.png">div>
<div class=""><img src="img/orange.png">div>
<div class=""><img src="img/lemon.png">div>
div>
div>
`
list: [{
id: 1,
title: 'apple',
path: 'img/apple.png'
}, {
id: 2,
title: 'orange',
path: 'img/orange.png'
}, {
id: 3,
title: 'lemon',
path: 'img/lemon.png'
}]
把tab栏 中的数替换到页面上
<div id="app">
<div class="tab">
<ul>
<!--
1、绑定key的作用 提高Vue的性能
2、 key 需要是唯一的标识 所以需要使用id, 也可以使用index ,
index 也是唯一的
3、 item 是 数组中对应的每一项
4、 index 是 每一项的 索引
-->
<li :key='item.id' v-for='(item,index) in list'>{{item.title}}</li>
</ul>
<div :key='item.id' v-for='(item, index) in list'>
<!-- : 是 v-bind 的简写 绑定属性使用 v-bind -->
<img :src="item.path">
</div>
</div>
</div>
<script>
new Vue({
// 指定 操作元素 是 id 为app 的
el: '#app',
data: {
list: [{
id: 1,
title: 'apple',
path: 'img/apple.png'
}, {
id: 2,
title: 'orange',
path: 'img/orange.png'
}, {
id: 3,
title: 'lemon',
path: 'img/lemon.png'
}]
}
})
</script>
4.1 、让默认的第一项tab栏高亮
4.2 、让默认的第一项tab栏对应的div 显示
<ul>
<!-- 动态绑定class 有 active 类名高亮 无 active 不高亮-->
<li :class='currentIndex==index?"active":""'
:key='item.id' v-for='(item,index) in list'
>{{item.title}}</li>
</ul>
<!-- 动态绑定class 有 current 类名显示 无 current 隐藏-->
<div :class='currentIndex==index?"current":""'
:key='item.id' v-for='(item, index) in list'>
<!-- : 是 v-bind 的简写 绑定属性使用 v-bind -->
<img :src="item.path">
</div>
<script>
new Vue({
el: '#app',
data: {
currentIndex: 0, // 选项卡当前的索引 默认为 0
list: [{
id: 1,
title: 'apple',
path: 'img/apple.png'
}, {
id: 2,
title: 'orange',
path: 'img/orange.png'
}, {
id: 3,
title: 'lemon',
path: 'img/lemon.png'
}]
}
})
</script>
4.3 、点击每一个tab栏 当前的高亮 其他的取消高亮
给每一个li添加点击事件
让当前的索引 index 和 当前 currentIndex 的 值 进项比较
如果相等 则当前li 添加active 类名 当前的 li 高亮 当前对应索引的 div 添加 current 当前div 显示 其他隐藏
<div id="app">
<div class="tab">
<ul>
<!-- 通过v-on 添加点击事件 需要把当前li 的索引传过去
-->
<li v-on:click='change(index)'
:class='currentIndex==index?"active":""'
:key='item.id'
v-for='(item,index) in list'>{{item.title}}</li>
</ul>
<div :class='currentIndex==index?"current":""'
:key='item.id' v-for='(item, index) in list'>
<img :src="item.path">
</div>
</div>
</div>
<script>
new Vue({
el: '#app',
data: {
currentIndex: 0, // 选项卡当前的索引 默认为 0
list: [{
id: 1,
title: 'apple',
path: 'img/apple.png'
}, {
id: 2,
title: 'orange',
path: 'img/orange.png'
}, {
id: 3,
title: 'lemon',
path: 'img/lemon.png'
}]
},
methods: {
change: function(index) {
// 通过传入过来的索引来让当前的 currentIndex 和点击的index 值 相等
// 从而实现 控制类名
this.currentIndex = index;
}
}
})
</script>