这里的Vue主要是是Vue中的基础部分,主要涉及Vue的配置、双向绑定、计算属性、监测属性等。没有使用脚手架,没有组件化开发。(在单HTML页面开发)
这里主要用Vue2样式(这部分Vue2和Vue3一致)
参考B站天禹老师课程
参考博客文章
起步
访问官网链接,下载Vue的js文件。
我下载的是开发版本。然后在项目中创建js文件,把下载的Vue.js文件放入其中。之后需要使用时在html中引用Vue.js即可(类似JQuery.js)。
也可以选择直接引入CDN,这样更加方便(但开发时需要联网)。
在Chrome浏览器中下载拓展:Vue.js developer并启用,这样会让开发更舒服。
初识Vue
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
| <!DOCTYPE html> <html lang="en">
<head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>初始vue</title> <script type="text/javascript" src="../js/vue.js"></script> </head>
<body> <div id="root"> <h1>Hello,{{name}},{{age}}</h1> </div>
<script type="text/javascript"> Vue.config.productionTip = false
new Vue({ el: '#root', data:{ name: 'zhangsan', age: 18 } })
</script> </body>
</html>
|
总结:
- 想让Vue工作就必须创建一个Vue实例,且要传入一个操作对象
- root容器里的代码依然符合HTML规范,只不过混入了一些特殊的Vue语法
- root容器里的代码被称为 “Vue模板”
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
| <!DOCTYPE html> <html lang="en">
<head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>初始vue</title> <script type="text/javascript" src="../js/vue.js"></script> </head>
<body>
<div id="root"> <h1>Hello,{{name}},{{age}},{{school}}</h1> </div>
<script type="text/javascript"> Vue.config.productionTip = false
new Vue({ el: '#root', data:{ name: 'zhangsan', age: 18 } }) new Vue({ el: '#root', data:{ school: '重交' } })
</script> </body>
</html>
|
注意这里“重交”是不会显示的。
总结:
Vue中的容器和Vue实例对象需要是一一对应的(但是不用担心数据多,Vue实例对象可以有很多 “手下”(组件))
模版语法
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>模板语法</title> <script type="text/javascript" src="../js/vue.js"></script> </head> <body> <div id="root"> <h1>插值语法</h1> <h3>你好,{{name}}</h3> <hr/>
<h1>指令语法</h1> <a v-bind:href="url">点我去指定链接的地址</a> <a :href="url">点我去指定链接的地址</a> <hr/> </div>
</body>
<script type="text/javascript">
Vue.config.productionTip = false
new Vue({ el: '#root', data: { name: 'zhangsan', url: 'https://www.bilibili.com/' } })
</script> </html>
|
总结:
Vue模板语法有两大类:
插值语法:
功能:用于解析标签内容(标签体)
写法:{{xxx}}
, xxx
是js表达式,且可以直接读取到data中的所有属性
xxx
可以是data中的变量,也可以是data中变量的相关运算,例如{{count * 2}}
(假设data中有个count变量是数字,这样显示的就是2倍该变量);同理{{list.split(" ").reverse().join(" ")}}
也是可以的。也可以直接调用<script></script>
中的函数,例如{{showInfo()}}
。
指令语法:
功能:用于解析标签(包括:标签属性,标签体内容,绑定事件….)
举例:v-bind:href="xxx"
或简写为 :href="xxx"
, xxx
同样也是js表达式,且可以直接读取到data中的所有属性
备注:Vue中有很多指令,且形式都是 “v-“开头,例如:v-if
等,这里只是拿v-bind
举例
该写js表达式就得写js表达式,如果该位置的内容不是js表达式就会报错
后面还会逐步介绍其他模版语法,不过也可以看官方文档提前学习.
数据绑定
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>数据绑定</title> <script type="text/javascript" src="../js/vue.js"></script> </head> <body> <div id="root"> 单向数据绑定:<input type="text" v-bind:value="name"><br/>
双向数据绑定:<input type="text" v-model:value="name"> </div> </body>
<script type="text/javascript"> Vue.config.productionTip = false
new Vue({ el: "#root", data: { name: '张三' } }) </script>
</html>
|
总结:
- 单向绑定(
v-bind
):数据只能从data流向页面
- 双向绑定(
v-model
):数据不仅能从data流向页面还能从页面流向data
备注:
- 双向绑定一般应用在表单元素(input,select等写在form中的元素)上
v-model:value
可简写为: v-model
, 因为v-model默认收集的就是value值.
el和data的两种写法
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>el与data的两种写法</title> <script type="text/javascript" src="../js/vue.js"></script> </head> <body> <div id="root"> <h1>{{name}}</h1> </div>
</body>
<script type="text/javascript"> Vue.config.productionTip = false
const vm = new Vue({
data () { return { name: 'zhangsan' } } }) vm.$mount('#root')
</script> </html>
|
总结:
el有两种写法:
(1) new Vue时配置el属性 el:’xxx’
(2) 先创建Vue实例(vm),之后再通过vm.$mount(‘xxx’)指定el值
data有两种写法:
(1) 对象式
(2) 函数式
一个重要原则:
由Vue管理的函数一定不要写箭头函数,一旦写了箭头函数,this就不是Vue实例了
这里其实不用过分纠结,因为Vue3中有组合式API风格(这种属于是选项式风格)
MVVM模型
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Vue中的MVVM</title> <script type="text/javascript" src="../js/vue.js"></script> </head> <body>
<div id="root">
<h1>姓名:{{name}}</h1> <h1>年龄:{{_data.age}}</h1> </div>
</body>
<script type="text/javascript"> Vue.config.productionTip = false
const vm = new Vue({ el: "#root", data () { return{ name: '张三', age: 18 } } })
console.log(vm); </script>
</html>
|
总结:
MVVM模型(M V VM):
1. M:模型(Model):data中的数据
2. V:视图(View):Vue模板(容器内的代码)
3. VM:视图模板(ViewModel):Vue实例
备注:
- data中所有属性,最后都出现在了vm身上
- vm身上所有属性 及 Vue原型上所有属性,在Vue模板(视图)中都可直接使用
数据代理
Object.defineProperty()
顾名思义就是给一个对象(Object)定义(define)属性(property)的.
注意,没有引任何js代码,所以这个方法时javascript自带的.
下面就是介绍基本原理的JS代码(不涉及Vue)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Object.defineProperty方法</title> </head> <body> <script type="text/javascript"> let num = 20
let person = { name: 'zhangsan', sex:'男' }
Object.defineProperty(person,'age',{ value: 18, enumerable: true, writable: true, configurable: true })
Object.defineProperty(person,'num',{
get () { return num }, set (value) { console.log('num的值被修改为:',value); }
})
console.log(person);
for(let key in person){ console.log(person[key]); } </script>
</body> </html>
|
数据代理:通过 一个对象 代理对 另一个对象 中属性的操作 读/写
Vue中的数据代理
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Vue中的数据代理</title> <script type="text/javascript" src="../js/vue.js"></script> </head> <body>
<div id="root"> <h2>姓名:{{name}}</h2> <h2>年龄:{{age}}</h2> </div> </body>
<script type="text/javascript"> Vue.config.productionTip = false
const vm = new Vue({ el: '#root', data() { return { name: 'zhangsan', age: 19, } }, })
console.log(vm) </script> </html>
|
注意,利用浏览器中的控制器,改变age的值试试。
总结:
- Vue中的数据代理:
通过vm对象来代理data对象中属性的操作 (读/写)
- Vue中数据代理的好处:
更加方便的操作data中的数据
- 基本原理:
通过Object.defineProperty()把data对象中所有属性添加到vm上
为每一个添加到vm上的属性指定一个getter和setter
在getter和setter内容去操作(读/写)对应的属性
我理解的 vm 根据 data 添加属性的过程:
- 先从data中获取数据,放到vm原本就有的属性
_data
中,所以访问_data.age
也访问到了(且正确)
- 由于每次使用
_data.age
访问数据很麻烦,Vue多走了一步数据代理,给vm新创建了data中有的属性,所以能访问到达age,实际上就是Vue走的数据代理
事件处理
事件基本使用
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>事件的基本使用</title> <script type="text/javascript" src="../js//vue.js"></script> </head> <body>
<div id="root"> <h2>欢迎,{{name}}</h2>
<button v-on:click="showInfo1">点我提示信息1</button><br/>
<button @click="showInfo1">点我提示信息1</button><br/>
<button @click="showInfo2(66,$event)">点我提示信息2</button><br/> <input @blur="showInfo1" placeholder="失去焦点提示信息1"></input><br/> <button @mouseover="showInfo1">鼠标悬浮提示信息1</button> </div> </body>
<script type="text/javascript"> Vue.config.productionTip = false
const vm = new Vue({ el: '#root', data() { return { name: '张三', } }, methods: { showInfo1 (event) { console.log(event.target.innerText)
console.log(this === vm) alert('点击按钮后的提示信息1') }, showInfo2 (id,event) { console.log(id); console.log(event.target.innerText); alert('点击按钮后的提示信息2') } }, }) </script> </html>
|
总结:
- 使用
v-on:xxx
或 @xxx
绑定事件,其中xxx
是事件名(如onclick
、onfocus
,onblur
,onmouseover
等),注意不用带前面的on
- 事件的回调需要配置在methods对象中,最终会在vm对象上
- methods中配置的函数也是Vue管理的函数,不要用箭头函数,否者this就不是vm了;Vue管理的对象的this指向vm或组件实例对象
@click="demo"
和 @click="demo($event)"
效果一样,如果无参可省略占位的 $event
,如果有其他参数又想要得到event就可以占位传参
事件修饰符
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>事件修饰符</title> <script type="text/javascript" src="../js/vue.js"></script> <style> *{ margin-top: 20px; } .demo1{ height: 50px; background-color: aqua; } .box1{ padding: 5px; background-color: aliceblue; } .box2{ padding: 5px; background-color: antiquewhite; } .list{ width: 200px; height: 200px; background-color: burlywood; overflow: auto; } li{ height: 100px; } </style> </head> <body>
<div id="root"> <h2>欢迎{{name}}</h2>
<a :href="url" @click.prevent="showInfo">点我提示信息1</a><br/>
<div class="demo1" @click="showInfo">
<button @click.stop="showInfo">点我提示信息2</button> </div>
<button @click="showInfo">点我提示信息3</button> <button @click.once="showInfo">点我提示信息3</button>
<div class="box1" @click="showMsg(1)"> div1 <div class="box2" @click="showMsg(2)"> div2 </div> </div> <div class="box1" @click.capture="showMsg(1)"> div3 <div class="box2" @click="showMsg(2)"> div4 </div> </div>
<div class="demo1" @click.self="showInfo"> <button @click="showInfo">点我提示信息4</button> </div>
<ul @wheel.passive="demo" class="list"> <li>1</li> <li>2</li> <li>3</li> <li>4</li> </ul>
</div>
</body>
<script type="text/javascript"> Vue.config.productionTip = false
new Vue({ el: '#root', data () { return{ name: 'zhangsan', url: 'http://www.bilibili.com/' } }, methods:{ showInfo (e) { alert('提示1') }, showMsg (msg) { alert(msg) }, demo(){ console.log('@'); } } }) </script>
</html>
|
Vue中的事件修饰符:
常用:
1. `.prevent`:阻止**默认事件(原本标签会发生的事件)发生**,例如`<a></a>`的跳转页面
2. `.stop`:阻止事件冒泡
3. `.once`:事件只能触发一次
其他:
.capture
:使用事件捕获模式
.self
:只有event.target
是当前操作的元素时才触发事件
.passive
:事件的默认行为立即执行,无需等待事件回调执行完毕
备注:事件修饰符是可以连写的,没有要求前后顺序(但是先执行前面的),例如又要阻止冒泡,又要阻止原本默认事件: @xxx.stop.prevent
键盘事件
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>键盘事件</title> <script type="text/javascript" src="../js/vue.js"></script> </head> <body>
<div id="root"> <h2>欢迎{{name}}</h2> <input type="text" placeholder="按下回车提示输入" @keyup.enter="showInfo"> <input type="text" placeholder="按下CapsLock提示输入" @keyup.caps-lock="showInfo"> <input type="text" placeholder="按下tab提示输入" @keydown.tab="showInfo"> <input type="text" placeholder="按下回车提示输入" @keyup.huiche="showInfo"> </div>
</body>
<script type="text/javascript"> Vue.config.productionTip = false Vue.config.keyCodes = { huiche : 13 }
new Vue({ el: '#root', data () { return{ name: 'zhangsan' } }, methods: { showInfo (e) {
console.log(e.target.value); } }, }) </script>
</html>
|
Vue中常用的按键别名:
回车 : .enter
删除 : .delete(捕获 删除 和 退格 键)
退出 : .esc
空格 : .space
换行 : .tab
上 : .up
下 : .down
左 : .left
右 : .right
ctrl 、 alt 、 shift 、 meta 、tab 、caps-lock 、 num-lock
Vue未提供别名的按键,可以使用按键原始的keyCode值去绑定(showInfo()
函数中注释那样)也可以用key(key是按键,keyCode是按键的编码),
但是要注意转换为kebab-case(短横线命名) 如切换大小写的按键:CapsLock就不能直接写,要写成caps-lock
- 系统修饰键(用法特殊):CTRL,alt,shift,meta(Windows徽标键),tab
推荐用keydown,如果偏要用keyup: (1) 配合keyup使用:按下修饰键的同时,再按下其他键,随后释放其他键,事件才能触发
(2) 配置keydown使用:正常触发事件,比如tab键,本身就是切换元素,如果用keyup就跳出输入框了,所以tab就是一个典型的要用keydown的按键
如果想要验证ctrl+y 可以这样写: @keyup.ctrl.y
- 也可以使用keyCode去指定具体的按键 (例如回车:建议是@keyup.enter,但是@keyup.13也是同样的效果) (不推荐,因为部分浏览器已经不支持了)
- Vue.config.keyCodes.自定义按键名 = 键码 可以定制按键别名(也不太推荐)
计算属性
姓名案例(插值语法实现)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>姓名案例(插值语法实现)</title> <script type="text/javascript" src="../js/vue.js"></script> </head> <body> <div id="root"> 姓:<input type="text" v-model="firstName" /><br /> 名:<input type="text" v-model="lastName" /><br /> 姓名:<span>{{firstName.slice(0,3)}}-{{lastName}}</span><br /> </div> </body>
<script type="text/javascript"> Vue.config.productionTip = false
new Vue({ el: '#root', data() { return { firstName: '张', lastName: '三', } }, }) </script> </html>
|
姓名案例(methods实现)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>姓名案例(methods实现)</title> <script type="text/javascript" src="../js/vue.js"></script> </head> <body> <div id="root"> 姓:<input type="text" v-model="firstName" /><br /> 名:<input type="text" v-model="lastName" /><br /> 姓名:<span>{{fullName()}}</span > </div> </body>
<script type="text/javascript"> Vue.config.productionTip = false
new Vue({ el: '#root', data() { return { firstName: '张', lastName: '三', } }, methods: { fullName() { return this.firstName + '-' + this.lastName }, }, }) </script> </html>
|
姓名案例(计算属性实现)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>姓名案例(计算属性实现)</title> <script type="text/javascript" src="../js/vue.js"></script> </head> <body>
<div id="root"> 姓:<input type="text" v-model="firstName" /><br /> 名:<input type="text" v-model="lastName" /><br /> 姓名:<span>{{fullName}}</span> </div> </body>
<script type="text/javascript"> Vue.config.productionTip = false
new Vue({ el: '#root', data() { return { firstName: '张', lastName: '三', } }, computed: { fullName: {
get() { return this.firstName + '-' + this.lastName }, set(value) { const arr = value.split('-') this.firstName = arr[0] this.lastName = arr[1] }, }, }, }) </script> </html>
|
总结:
计算属性:
- 定义:要用的属性不存在,要通过已有属性加工或计算得到的全新属性
- 原理:底层借助了Object.defineProperty()方法提供的getter和setter
- 对应计算属性的get()函数调用时机:
- 第一次读取对应计算属性时
- 该计算属性所依赖的属性发生变化时
- 优势:与methods相比,内部有缓存机制(可复用),效率更高,调试方便
- 备注:
- 计算属性时vm的新属性,可以直接用vm调用(可用this)
- 如果要修改计算属性,才写setter,如果要真正能修改起作用,就要修改计算时依赖的属性的值
- 记得getter都是要将值返回的
可以查看官方文档提前学习更深的计算属性方法。
计算属性简写
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>计算属性简写</title> <script type="text/javascript" src="../js/vue.js"></script> </head> <body>
<div id="root"> 姓:<input type="text" v-model="firstName" /><br /> 名:<input type="text" v-model="lastName" /><br /> 姓名:<span>{{fullName}}</span> </div> </body>
<script type="text/javascript"> Vue.config.productionTip = false
new Vue({ el: '#root', data() { return { firstName: '张', lastName: '三', } }, computed: { fullName () { return this.firstName + '-' + this.lastName } }, }) </script> </html>
|
计算属性能用简写的情况:只用getter,不用setter时(一般开发很少用setter)
监视属性
天气案例(引出需求)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>天气案例</title> <script type="text/javascript" src="../js/vue.js"></script> </head> <body> <div id="root">
<h2>今天天气很{{info}}</h2> <button @click="changeWeather">切换天气</button> </div> </body>
<script type="text/javascript"> Vue.config.productionTip = false
new Vue({ el: '#root', data() { return { isHot: true, } }, methods: { changeWeather () { this.isHot = !this.isHot } }, computed:{ info () { return this.isHot ? '炎热' : '凉爽' } } }) </script> </html>
|
天气案例(监视属性)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>天气案例_监视属性</title> <script type="text/javascript" src="../js/vue.js"></script> </head> <body> <div id="root">
<h2>今天天气很{{info}}</h2> <button @click="changeWeather">切换天气</button> </div> </body>
<script type="text/javascript"> Vue.config.productionTip = false
const vm = new Vue({ el: '#root', data() { return { isHot: true, } }, methods: { changeWeather () { this.isHot = !this.isHot } }, computed:{ info () { return this.isHot ? '炎热' : '凉爽' } }, watch:{ isHot:{ immediate: true, handler (newValue,oldValue) { console.log('isHot被修改了',newValue,oldValue); } }, info:{ immediate: true, handler (newValue,oldValue) { console.log(newValue,oldValue); } } } })
</script> </html>
|
总结
监视属性watch
:
- 当被监视的属性变化时,回调函数会自动调用,进行相关操作
- 监视的属性必须存在,才能进行监视, 但是如果不存在也不会报错,所以要注意
- 监视的两种方式:
(1) new Vue时传入watch配置
(2) 通过vm.$watch 配置
官方文档
天气案例(深度监视)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>天气案例_深度监视</title> <script type="text/javascript" src="../js/vue.js"></script> </head> <body>
<div id="root"> <h2>今天天气很{{info}}</h2> <button @click="changeWeather">切换天气</button> <hr/> <h3>a的值是{{numbers.a}}</h3> <button @click="numbers.a++">点我让a的值++</button> <h3>b的值是{{numbers.b}}</h3> <button @click="numbers.b++">点我让b的值++</button> </div> </body>
<script type="text/javascript"> Vue.config.productionTip = false
const vm = new Vue({ el: '#root', data() { return { isHot: true, numbers:{ a: 1, b: 2 } } }, methods: { changeWeather () { this.isHot = !this.isHot } }, computed:{ info () { return this.isHot ? '炎热' : '凉爽' } }, watch:{ isHot:{ immediate: true, handler (newValue,oldValue) { console.log('isHot被修改了',newValue,oldValue); } },
numbers:{ deep: true, handler () { console.log('numbers改变了'); } } } })
</script> </html>
|
总结:
深度监视:
- Vue中的watch默认不监视对象内部值的改变,只监视一层
- 配置deep:true 开启深度监视,就可以监视内部值的改变了(多层)
备注:
- Vue自身可以监视对象内部值的改变,但Vue提供的watch默认不可以
- 使用watch时根据数据的具体结构,决定是否采用深度监视
监视属性的简写
可以使用简写的前提:监视的配置只有handler时,没有其他配置项
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>监视属性简写</title> <script type="text/javascript" src="../js/vue.js"></script> </head> <body> <div id="root"> <h2>今天天气很{{info}}</h2> <button @click="changeWeather">切换天气</button> </div> </body>
<script type="text/javascript"> Vue.config.productionTip = false
const vm = new Vue({ el: '#root', data() { return { isHot: true, } }, methods: { changeWeather () { this.isHot = !this.isHot } }, computed:{ info () { return this.isHot ? '炎热' : '凉爽' } }, watch:{
isHot (newValue,oldValue) { console.log('isHot被修改了',newValue,oldValue); } } })
vm.$watch('isHot',function(newValue,oldValue){ console.log('isHot被修改了',newValue,oldValue); })
</script> </html>
|
姓名案例(用监视属性实现)
目的是和计算属性实现做对比
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>姓名案例(监视属性实现)</title> <script type="text/javascript" src="../js/vue.js"></script> </head> <body> <div id="root"> 姓:<input type="text" v-model="firstName" /><br /> 名:<input type="text" v-model="lastName" /><br /> 姓名:<span></span> </div> </body>
<script type="text/javascript"> Vue.config.productionTip = false
new Vue({ el: '#root', data() { return { firstName: '张', lastName: '三', fullName: '张-三', } }, watch:{ firstName (newValue) { setTimeout(() => { this.fullName = newValue + '-' + this.lastName },1000) }, lastName (newValue) { this.fullName = this.firstName + '-' + newValue } } }) </script> </html>
|
总结:
computed和watch之间的区别:
- computed能完成的功能,watch都能完成
- watch能完成比computed多的功能,例如:watch可以进行异步操作
两个重要原则:
- 被Vue管理的函数,最好写成普通函数,这样this的指向才是 vm 或 组件实例对象
- 所有不被 Vue管理的函数(定时器的回调函数、Ajax的回调函数),最好写成箭头函数,
这样 this 的指向才是 vm 或 组件实例对象
绑定样式
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>绑定属性</title> <script type="text/javascript" src="../js/vue.js"></script> <style> .basic{ width: 400px; height: 100px; border: 1px solid black; } .happy{ border: 4px solid red;; background-color: rgba(255, 255, 0, 0.644); background: linear-gradient(30deg,yellow,pink,orange,yellow); } .sad{ border: 4px dashed rgb(2, 197, 2); background-color: gray; } .normal{ background-color: skyblue; }
.diejia1{ background-color: yellowgreen; } .diejia2{ font-size: 30px; text-shadow:2px 2px 10px red; } .diejia3{ border-radius: 20px; } </style> </head> <body> <div id="root">
<div class="basic" :class="mood" @click="changeMood">{{name}}</div>
<div class="basic" :class="classArr">{{name}}</div>
<div class="basic" :class="classObj">{{name}}</div>
<div class="basic" :style="{fontSize: fsize+'px'}">{{name}}</div>
<div class="basic" :style="styleObj">{{name}}</div>
</div> </body>
<script type="text/javascript"> Vue.config.productionTip = false
new Vue({ el: '#root', data() { return { name: 'zhangsan', mood: 'normal', classArr: ['diejia1','diejia2','diejia3'], classObj:{ diejia1:false, diejia2:false, diejia3:true }, fsize: 40, styleObj:{ fontSize: '40px', color: 'red', backgroundColor: 'orange' } } }, methods: { changeMood () { const arr = ['happy','sad','normal'] this.mood = arr[Math.floor(Math.random()*3)] } }, }) </script> </html>
|
条件渲染
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>条件渲染</title> <script type="text/javascript" src="../js/vue.js"></script> </head>
<div id="root"> <h2 v-show="false">欢迎{{name}}</h2>
<h2 v-if="false">欢迎{{name}}</h2>
<h2>当前n值是:{{n}}</h2> <button @click="n++">点我n+1</button>
<div v-show="n === 1">HTML show</div> <div v-show="n === 2">CSS show</div> <div v-show="n === 3">VUE show</div><br/>
<div v-if="n === 1">HTML if</div> <div v-else-if="n === 2">CSS if</div> <div v-else-if="n === 3">JAVASCRIPT if</div> <div v-else>VUE if</div>
<template v-if="n === 1"> <h2>你好</h2> <h2>你好!</h2> <h2>你好!!</h2> </template>
</div> </body>
<script type="text/javascript"> Vue.config.productionTip = false
const vm = new Vue({ el: '#root', data () { return { name: '张三', n:0 } }, }) </script> </html>
|
条件渲染:
v-if
写法:
(1).v-if="表达式"
(2).v-else-if="表达式"
(3).v-else="表达式"
适用于:切换频率较低的场景。
特点:不展示的DOM元素直接被移除。
注意:v-if可以和:v-else-if、v-else一起使用,但要求结构不能被“打断”。
v-show
写法:v-show="表达式"
适用于:切换频率较高的场景。
特点:不展示的DOM元素未被移除,仅仅是使用样式隐藏掉
备注:使用v-if的时,元素可能无法获取到,而使用v-show一定可以获取到。
- template只能配合v-if使用
列表渲染
基本列表
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>基本列表</title> <script type="text/javascript" src="../js/vue.js"></script> </head> <body> <div id="root">
<h2>人员列表</h2> <ul>
<li v-for="p in persons" :key="p.id"> {{p.name}}--{{p.age}}--{{p.id}} </li> <br/> <li v-for="(p,index) in persons" :key="index"> {{p.name}}--{{p.age}}--{{index}} </li> </ul>
<br/>
<h2>商品信息</h2> <ul> <li v-for="(value,key,index) in goods" :key="k"> {{index}}--{{key}}--{{value}} </li> </ul>
<h2>测试遍历字符串</h2> <ul> <li v-for="(char,index) in str" :key="index"> {{char}}--{{index}} </li> </ul>
<h2>测试遍历指定次数</h2> <ul> <li v-for="(num,index) in 5" :key="index"> {{num}}--{{index}} </li> </ul> </div> </body>
<script type="text/javascript"> Vue.config.productionTip = false
new Vue({ el: '#root', data() { return { persons: [ {id:'001',name:'张三',age:20}, {id:'002',name:'李四',age:24}, {id:'003',name:'王五',age:16} ], goods: { name: '篮球', price: 50, inventory: 20 }, str: 'hello' } }, methods: {}, }) </script> </html>
|
总结:
- 用于展示列表数据
- 语法:v-for=”(item,index) in xxx” :key=”yyy” ,其中xxx是待遍历的东西,yyy是key,具体的key有关的内容看下一个文件
key的原理
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>key的原理</title> <script type="text/javascript" src="../js/vue.js"></script> </head> <body>
<div id="root"> <h2>人员列表</h2> <ul> <li v-for="(p,index) in persons" :key="p.id"> {{p.name}}--{{p.age}} <input type="text"> </li> </ul> <button @click="add">添加一个赵六</button> </div> </body>
<script type="text/javascript"> Vue.config.productionTip = false
new Vue({ el: '#root', data() { return { persons: [ {id:'001',name:'张三',age:20}, {id:'002',name:'李四',age:24}, {id:'003',name:'王五',age:16} ], } }, methods: { add () { const p = {id:'004',name:'赵六',age:40} this.persons.unshift(p) } }, }) </script> </html>
|
面试题:react、vue中的key有什么作用?(key的内部原理)
虚拟DOM中key的作用:
key是虚拟DOM对象的标识,当数据发生变化时,Vue会根据【新数据】生成【新的虚拟DOM】,
随后Vue进行【新虚拟DOM】与【旧虚拟DOM】的差异比较,比较规则如下:
对比规则:
(1).旧虚拟DOM中找到了与新虚拟DOM相同的key:
a. 若虚拟DOM中内容没变, 直接使用之前的真实DOM!
b. 若虚拟DOM中内容变了, 则生成新的真实DOM,随后替换掉页面中之前的真实DOM。
(2).旧虚拟DOM中未找到与新虚拟DOM相同的key
创建新的真实DOM,随后渲染到到页面。
用index作为key可能会引发的问题:
若对数据进行:逆序添加、逆序删除等破坏顺序操作:
会产生没有必要的真实DOM更新 ==> 界面效果没问题, 但效率低。
如果结构中还包含输入类的DOM:
会产生错误DOM更新 ==> 界面有问题。
开发中如何选择key?
1.最好使用每条数据的唯一标识作为key, 比如id、手机号、身份证号、学号等唯一值。
2.如果不存在对数据的逆序添加、逆序删除等破坏顺序操作,仅用于渲染列表用于展示,使用index作为key是没有问题的。
列表过滤
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>列表过滤</title> <script type="text/javascript" src="../js/vue.js"></script> </head> <body> <div id="root"> <h2>人员列表</h2> <input type="text" placeholder="请输入名字,模糊搜索" v-model="keyWord"> <ul> <li v-for="p in filterPersons" :key="p.id"> {{p.name}}--{{p.age}}--{{p.sex}} </li> </ul> </div> </body>
<script type="text/javascript"> Vue.config.productionTip = false
new Vue({ el: '#root', data() { return { keyWord:'', persons: [ {id:'001',name:'马冬梅',age:25,sex:'女'}, {id:'002',name:'周冬雨',age:30,sex:'女'}, {id:'003',name:'周杰伦',age:35,sex:'男'}, {id:'004',name:'温兆伦',age:40,sex:'男'} ] } }, computed:{ filterPersons () { return this.persons.filter((p)=>{ return p.name.indexOf(this.keyWord) !== -1 }) } } }) </script> </html>
|
列表排序
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>列表排序</title> <script type="text/javascript" src="../js/vue.js"></script> </head> <body>
<div id="root"> <h2>人员列表</h2> <input type="text" placeholder="请输入名字,模糊搜索" v-model="keyWord"> <button @click="sortType = 2">年龄升序</button> <button @click="sortType = 1">年龄降序</button> <button @click="sortType = 0">原顺序</button> <ul></ul> <li v-for="p in filterPersons" :key="p.id"> {{p.name}}--{{p.age}}--{{p.sex}} </li> </ul> </div> </body>
<script type="text/javascript"> Vue.config.productionTip = false
new Vue({ el: '#root', data() { return { keyWord:'', persons: [ {id:'001',name:'马冬梅',age:32,sex:'女'}, {id:'002',name:'周冬雨',age:30,sex:'女'}, {id:'003',name:'周杰伦',age:35,sex:'男'}, {id:'004',name:'温兆伦',age:40,sex:'男'} ], sortType: 0, } }, computed:{ filterPersons () { const arr = this.persons.filter((p)=>{ return p.name.indexOf(this.keyWord) !== -1 }) if(this.sortType){ arr.sort((p1,p2)=>{ return this.sortType === 1 ? p2.age - p1.age : p1.age - p2.age }) } return arr } } }) </script> </html>
|
更新数据时的一个小问题
主要看Vue代码,看什么情况Vue检测不到数据变化,原理分析看下一个文件
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>更新数据时的一个小问题</title> <script type="text/javascript" src="../js/vue.js"></script> </head> <body> <div id="root"> <h2>人员列表</h2> <button @click="updateMei">更新马冬梅信息</button> <ul> <li v-for="p in persons" :key="p.id"> {{p.name}}--{{p.age}}--{{p.sex}} </li> </ul> </div> </body>
<script type="text/javascript"> Vue.config.productionTip = false
new Vue({ el: '#root', data() { return { persons: [ {id:'001',name:'马冬梅',age:32,sex:'女'}, {id:'002',name:'周冬雨',age:30,sex:'女'}, {id:'003',name:'周杰伦',age:35,sex:'男'}, {id:'004',name:'温兆伦',age:40,sex:'男'} ], } }, methods: { updateMei () {
this.persons.splice(0,1,{id:'001',name:'马保国',age:69,sex:'男'}) } }, }) </script> </html>
|
Vue监测数据(对象)改变的原理
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Vue监测数据改变的原理</title> <script type="text/javascript" src="../js/vue.js"></script> </head> <body>
<div id="root"> <h2>姓名:{{name}}</h2> <h2>年龄:{{age}}</h2> </div> </body>
<script type="text/javascript"> Vue.config.productionTip = false
const vm = new Vue({ el: '#root', data() { return { name: '张三', age: 19, } }, }) </script> </html>
|
模拟一个数据监测
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>模拟一个数据监测</title> </head> <body> <script type="text/javascript"> let data = { a:1, b:2 }
const obs = new Observer(data) let vm = {} vm._data = data = obs function Observer(obj){ const keys = Object.keys(obj) keys.forEach((k)=>{ Object.defineProperty(this,k,{ get () { return obj[k] }, set (val) { console.log('${k}被改了,我要去解析模板,生成DOM.....'); obj[k] = val } }) }) }
</script> </body> </html>
|
Vue.set()的使用
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Vue.set()的使用</title> <script type="text/javascript" src="../js/vue.js"></script> </head> <body> <div id="root">
<h1>学生信息</h1> <button @click="addSex">点我添加一个性别属性,默认值是男</button> <h2>姓名{{student.name}}</h2> <h2>年龄:真实年龄-{{student.age.rAge}};对外年龄-{{student.age.vage}}</h2> <h2 v-if="student.sex">性别:{{student.sex}}</h2> <h2>朋友们:</h2> <table> <tr> <th>姓名</th> <th>年龄</th> </tr> <tr v-for="(p,index) in student.friends" :key="index"> <td>{{p.name}}</td> <td>{{p.age}}</td> </tr> </table> </div> </body>
<script type="text/javascript"> Vue.config.productionTip = false
new Vue({ el: '#root', data() { return { student:{ name:'tom', age:{ rAge:23, vAge:29 }, friends:[ {name:'lucy',age:30}, {name:'jack',age:28} ] } } }, methods: { addSex () { this.$set(this.student,'sex','男') } }, }) </script> </html>
|
Vue监测数据(数组)改变的原理
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>09_Vue监测(数组)数据改变的原理</title> <script type="text/javascript" src="../js/vue.js"></script> </head> <body> <div id="root">
<h2>爱好</h2> <ul> <li v-for="(h,index) in student.hobby" :key="index"> {{h}} </li> </ul> <h2>朋友们:</h2> <ul> <li v-for="(p,index) in student.friends" :key="index"> {{p.name}} -- {{p.age}} </li> </ul> </div> </body>
<script type="text/javascript"> Vue.config.productionTip = false
const vm = new Vue({ el: '#root', data() { return { student:{ name:'tom', age:{ rAge:23, vAge:29 }, hobby:['basketball','football','write code'], friends:[ {name:'lucy',age:30}, {name:'jack',age:28} ] } } }, methods: {}, }) </script> </html>
|
数据监测总结
05-09大总结
Vue监视数据的原理:
vue会监视data中所有层次的数据。
如何监测对象中的数据?
通过setter实现监视,且要在new Vue时就传入要监测的数据。
(1).对象中后追加的属性,Vue默认不做响应式处理
(2).如需给后添加的属性做响应式,请使用如下API:
`Vue.set(target,propertyName/index,value)` 或
`vm.$set(target,propertyName/index,value)`
如何监测数组中的数据?
通过包裹数组更新元素的方法实现,本质就是做了两件事:
(1).调用原生对应的方法对数组进行更新。
(2).重新解析模板,进而更新页面。
在Vue修改数组中的某个元素一定要用如下方法:
1.使用这些API:`push()`、`pop()`、`shift()`、`unshift()`、`splice()`、`sort()`、`reverse()`
2.`Vue.set()` 或 `vm.$set()`
特别注意:Vue.set()
和 vm.$set()
不能给vm 或 vm的根数据对象 添加属性!!!
数据劫持:
就是有修改代码就被setter发现了,就被setter劫持了,劫持了之后再解析代理
数据劫持和数据代理其实本质都离不开 Object.defineProperty()
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>09_Vue监测(数组)数据改变的原理</title> <script type="text/javascript" src="../js/vue.js"></script> </head> <body>
<div id="root"> <h1>学生信息</h1>
<button @click="student.age++">年龄+1</button><br/><br/> <button @click="addSex">添加性别属性,默认值:男</button><br/><br/> <button @click.once="addFriend">在列表首位添加一个朋友(name为李四,年龄为28)</button><br/><br/> <button @click="modifyFirendName">修改第一个朋友的名字为:张三</button><br/><br/> <button @click.once="addHobby">添加一个爱好:study</button><br/><br/> <button @click="modifyHobby">修改第一个爱好为:driver</button><br/><br/> <button @click="filterBasketball">过滤掉爱好:basketball</button><br/><br/>
<h3>姓名:{{student.name}}</h3> <h3>年龄:{{student.age}}</h3> <h3 v-if="student.sex">性别:{{student.sex}}</h3> <h3>爱好</h3> <ul> <li v-for="(h,index) in student.hobby" :key="index"> {{h}} </li> </ul> <h3>朋友们:</h3> <ul> <li v-for="(p,index) in student.friends" :key="index"> {{p.name}} -- {{p.age}} </li> </ul> </div> </body>
<script type="text/javascript"> Vue.config.productionTip = false
const vm = new Vue({ el: '#root', data() { return { student:{ name:'tom', age:20, hobby:['basketball','football','write code'], friends:[ {name:'lucy',age:30}, {name:'jack',age:28} ] } } }, methods: { addSex () { this.$set(this._data.student,'sex','男') }, addFriend () { this.student.friends.unshift({name:'李四',age:28}) }, modifyFirendName () {
this.$set(this.student.friends,0,{name:'张三',age:this.student.friends[0].age}) }, addHobby () { this.student.hobby.push('study') }, modifyHobby () {
this.$set(this.student.hobby,0,'driver') }, filterBasketball () { this.student.hobby = this.student.hobby.filter((h)=>{ return h !== 'basketball' }) } }, }) </script> </html>
|
收集表单数据
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title></title> <script type="text/javascript" src="../js/vue.js"></script> </head> <body> <div id="root">
<form @submit.prevent="formSubmit"> <label for="username">账号: </label> <input type="text" id="username" v-model.trim="userInfo.username"> <br/><br/> 密码:<input type="password" v-model="userInfo.password">
<br><br> 年龄: <input type="number" v-model.number="userInfo.age" name="" id=""> <br/><br/> 性别: 男 <input type="radio" name="sex" v-model="userInfo.sex" value="male"> 女 <input type="radio" name="sex" v-model="userInfo.sex" value="female">
<br/><br> 爱好: 吃饭 <input type="checkbox" name="hobby" id="" v-model="userInfo.hobby" value="eat"> 学习 <input type="checkbox" name="hobby" id="" v-model="userInfo.hobby" value="study"> 睡觉 <input type="checkbox" name="hobby" id="" v-model="userInfo.hobby" value="sleep">
<br><br> 星座: <select v-model="userInfo.constellation"> <option value="">请选择星座</option> <option value="baiyang">白羊座</option> <option value="jingniu">金牛座</option> <option value="suangzi">双子座</option> <option value="jvxie">巨蟹座</option> <option value="shizi">狮子座</option> <option value="chunv">处女座</option> <option value="tiancheng">天秤座</option> <option value="tianxie">天蝎座</option> <option value="sheshou">射手座</option> <option value="mojie">摩羯座</option> <option value="suiping">水瓶座</option> <option value="shuangyv">双鱼座</option> </select>
<br><br> 备注: <textarea v-model.lazy="userInfo.beizhu" name="" id="" cols="30" rows="10"></textarea>
<br><br> <input type="checkbox" v-model="userInfo.agree" name="yonhuxieyi" id=""> 阅读并接受<a href="www.bilibili.com">《用户协议》</a> <br><br> <button>提交</button> </form> </div> </body>
<script type="text/javascript"> Vue.config.productionTip = false
new Vue({ el: '#root', data() { return { userInfo:{ username: '', password: '', age:'', sex: '', hobby:[], constellation:'', beizhu:'', agree:false } } }, methods: { formSubmit () { console.log(JSON.stringify(this.userInfo)); } }, }) </script> </html>
|
总结
收集表单数据:
若:<input type="text"/>
,则v-model收集的是value值,用户输入的就是value值。
若:<input type="radio"/>
,则v-model收集的是value值,且要给标签配置value值。
若:<input type="checkbox"/>
1. 没有配置input的value属性,那么收集的就是checked(勾选 or 未勾选,是布尔值)
2. 配置input的value属性:
(1)v-model的初始值是非数组,那么收集的就是checked(勾选 or 未勾选,是布尔值)
(2)v-model的初始值是数组,那么收集的的就是value组成的数组
备注:v-model的三个修饰符:
- lazy:失去焦点再收集数据
- number:输入字符串转为有效的数字
- trim:输入首尾空格过滤
细节解释:
- 发现用v-model绑定账号和密码没有问题,但是如果用户前后不小心输入了空格就很麻烦,可以用.trim修饰符去掉前后空格
- 对于年龄,要输入数字,所以要设置输入框为number,但是还是收集到的数据还是字符串类型的,可能在后续处理中会出错,所以需要使用修饰符
v-model也有修饰符,使用v-model.number收集到的数据就是数字了(input的type还是要选number,input控制输入内容只能是数字,Vue控制接受数据类型是数字)
- 直接绑定性别的问题:一开始sex属性的值为:’’但是不管选女还是选男之后sex的值都变成了null,因为单选框没有value属性,所以单选框一定要有value属性
- 对于多选框,如果没有给每一个设置一个value值,默认读取的是标签的checked的值(布尔类型),勾选一个,hobby属性的值就变成了true,所有多选框都被选上了
但是发现加上了value之后还是有这样的问题,这时候发现new Vue时的hobby属性不是数组,还是只能存布尔值,
只有把hobby设计成数组才能存多选框的value,才能正常使用多选框
选中后的复选框数组的元素下标是由选择的先后顺序决定了,不是页面上的先后顺序
- 下拉框也是一样的道理,select加v-model绑定数据就好了,然后每一个option都要由自己的value就可以正常使用了
- 多行输入相当于也是输入框,直接写个v-model就相当于v-model:value 就绑定好了,把textarea当成text用就行
但是每次输入一下,Vue就收集一次数据,没有必要,可以用修饰符 .lazy修饰,输入完在收集
- 最后的是否同意协议直接用true和false的布尔值就行了,因为和性别不一样,我们不需要知道选的是哪个(因为只有一个)
过滤器
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title></title> <script type="text/javascript" src="../js/vue.js"></script> <script type="text/javascript" src="../js/dayjs.min.js"></script> </head> <body> <div id="root"> <h2>显示格式化后的时间</h2> <h3>直接显示:{{time}}</h3> <h3>计算属性实现:{{fmtTime}}</h3> <h3>methods实现:{{getfmtTime()}}</h3>
<h3>过滤器实现:{{time | timeFormater}}</h3>
<h3>过滤器实现:{{time | timeFormater("YYYY/MM/DD HH:mm:ss")}}</h3>
<h3>过滤器实现:{{time | timeFormater("YYYY/MM/DD HH:mm:ss") | mySlice}}</h3>
</div> </body>
<script type="text/javascript"> Vue.config.productionTip = false Vue.filter('mySlice',function(value){ return value.slice(0,4) })
new Vue({ el: '#root', data() { return { time:1659345969699 } }, methods: { getfmtTime () { return dayjs(this.time).format('YYYY-MM-DD HH:mm:ss') } }, computed:{ fmtTime () { return dayjs(this.time).format('YYYY-MM-DD HH:mm:ss') } }, filters:{ timeFormater (val,str='YYYY-MM-DD HH:mm:ss') { return dayjs(val).format(str) }, } }) </script> </html>
|
总结:
过滤器:
定义:对要显示的数据进行特定格式化后再显示(适用于一些简单逻辑的处理)。
语法:
1.注册过滤器:Vue.filter(name,callback) 或 new Vue{filters:{}}
2.使用过滤器:{{ xxx | 过滤器名}}
或 v-bind:属性 = “xxx | 过滤器名”
备注:
1.过滤器也可以接收额外参数、多个过滤器也可以串联
2.并没有改变原本的数据, 是产生新的对应的数据
内置指令
学过的指令:
- v-bind : 单向绑定数据,可简写为 :xxx
- v-model : 双向绑定数据 v-model:value 可简写为 v-model
- v-for : 遍历数组/对象/字符串/纯数字
- v-on : 绑定事件监听,可简写为 @
- v-show : 条件渲染(动态控制节点是否 展示)
- v-if : 条件渲染(动态控制节点是否存在)
- v-else-if : 条件渲染(要不间断接在v-if的容器后面)
- v-else : 条件渲染(要不间断接在v-if或v-else-if后面)
v-text
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>v-text指令</title> <script type="text/javascript" src="../js/vue.js"></script> </head> <body> <div id="root"> <div>{{name}}</div> <div v-text="name"></div>
<div>欢迎,{{name}}</div> <div v-text="name">欢迎,</div>
但是两者都不解析标签 <div>{{str}}</div> <div v-text="str"></div> </div> </body>
<script type="text/javascript"> Vue.config.productionTip = false
new Vue({ el: '#root', data() { return { name:'张三', str: "<h3>123<h3>" } }, methods: {}, }) </script> </html>
|
v-html
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>v-html指令</title> <script type="text/javascript" src="../js/vue.js"></script> </head> <body> <div id="root"> <div>{{str}}</div> <div v-html="str">欢迎,</div> </div> </body>
<script type="text/javascript"> Vue.config.productionTip = false
new Vue({ el: '#root', data() { return { name:'张三', str: "<h1>123<h1>" } }, methods: {}, }) </script> </html>
|
v-html
作用:向指定节点中渲染包含html结构(不是html结构也行)的内容
与插值语法的区别:
- v-html会替换标签中所有的内容,不会
- v-html可以识别渲染html结构,不可以
注意,将html结构写在js代码中本身就有危险性,所以使用:v-html也有危险性
如果将结构性的标签放在属性里本身就是很有危险性的,所以这个功能其实用的不多
危险性举例:str:'<a href="javascript:location.href=xxx?" + document.cookie>XXXX</a>'
点击链接时,就携带了cookie了
原生js会用,但是Vue没必要,原生js拼接td形成表格,但是Vue可以用v-for遍历生成,原生js得到msg用span绑定格式在登录时提示啥的,现在用v-show或者v-if就解决了
v-cloak
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>v-cloak指令</title> <style> [v-cloak]{ display: none; } </style> </head> <body>
<div id="root"> <h2 v-cloak>{{name}}</h2> </div>
<script type="text/javascript" src="../js/vue.js"></script> </body>
<script type="text/javascript"> Vue.config.productionTip = false
new Vue({ el: '#root', data() { return { name:'张三', } }, methods: {}, }) </script> </html>
|
v-once
- v-once指令所在节点在出初次渲染后,就视为静态内容了
- 以后数据的改变不会引起v-once所在结构的更新,可以用于优化性能
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>v-once指令</title> <script type="text/javascript" src="../js/vue.js"></script> </head> <body>
<div id="root"> <h2 v-once>初始化的n值是{{n}}<h2> <br/> <h2>当前n值是{{n}}</h2> <br> <button @click="n++">点我n++</button> </div> </body>
<script type="text/javascript"> Vue.config.productionTip = false
new Vue({ el: '#root', data() { return { n:1 } }, methods: {}, }) </script> </html>
|
v-pre
v-pre指令:
- 作用:跳过其所在节点的编译过程
- 可利用它跳过没有使用指令不需要编译的节点,这样会加快编译,提高性能
所以,如果有节点不用其他指令,最好写个v-pre,提高性能
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>v-pre指令</title> <script type="text/javascript" src="../js/vue.js"></script> </head> <body>
<div id="root"> <h2 v-pre>Vue其实很简单</h2> <h2 v-pre>当前n值是{{n}}</h2> <br> <button v-pre @click="n++">点我n++</button> </div> </body>
<script type="text/javascript"> Vue.config.productionTip = false
new Vue({ el: '#root', data() { return { n:1 } }, methods: {}, }) </script> </html>
|
自定义指令
如果某个函数操作会经常用,可以直接写成指令。
自定义指令基础
需求1:定义一个v-big指令,和v-text功能类似,但会把绑定的数值放大10倍
需求2:定义一个v-fbind指令,和v-bind功能类似,但可以让其所绑定的input元素 获得 焦点(当n改变时获取焦点)
自定义指令总结:
一、定义语法:
(1).局部指令:
new Vue({ new Vue({
directives:{指令名:配置对象} 或 directives{指令名:回调函数}
}) })
(2).全局指令:
Vue.directive(指令名,配置对象) 或 Vue.directive(指令名,回调函数)
二、配置对象中常用的3个回调:
(1).bind:指令与元素成功绑定时调用。
(2).inserted:指令所在元素被插入页面时调用。
(3).update:指令所在模板结构被重新解析时调用。
三、备注:
1.指令定义时不加v-,但使用时要加v-;
2.指令名如果是多个单词,要使用kebab-case命名方式,不要用camelCase命名。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>自定义指令</title> <script type="text/javascript" src="../js/vue.js"></script> </head> <body> <div id="root">
<h2>当前的n值是:<span v-text="n"></span> </h2> <h2>放大10倍后的n值是: <span v-big="n"></span> </h2> <button @click="n++">n++</button> <hr> <input type="text" v-fbind:value="n"> </div> </body>
<script type="text/javascript"> Vue.config.productionTip = false
new Vue({ el: '#root', data() { return { n:1, } }, directives:{ big (element,binding) { element.innerText = binding.value * 10 }, fbind:{ bind (element,binding) {
element.value = binding.value console.log('bind()') }, inserted (element,binding) { element.focus() console.log('inserted()'); }, update (element,binding) { element.value = binding.value element.focus() console.log('update()'); },
} } }) </script> </html>
|
生命周期
引出
生命周期:
1.又名:生命周期回调函数、生命周期函数、生命周期钩子。
2.是什么:Vue在关键时刻帮我们调用的一些特殊名称的函数。
3.生命周期函数的名字不可更改,但函数的具体内容是程序员根据需求编写的。
4.生命周期函数中的this指向是vm 或 组件实例对象。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>引出生命周期</title> <script type="text/javascript" src="../js/vue.js"></script> </head> <body> <div id="root"> <h2 :style="{opacity}">欢迎学习Vue</h2> </div> </body>
<script type="text/javascript"> Vue.config.productionTip = false
new Vue({ el: '#root', data() { return { opacity:1 } }, methods: { }, mounted() { setInterval(()=>{ this.opacity -= 0.01 if(this.opacity <= 0) this.opacity = 1 },16) }, })
</script> </html>
|
分析生命周期
实际上是四对,八个;也就是create,mount,update,destroy。有点类似servlet(构造器,init,service,destroy)。
Vue只有update可以执行多次,servlet只有service可以执行多次。
mounted(挂载):
概念:vue完成模板的解析并把初始的真实DOM元素放入页面后(挂载完毕),会调用mounted。mounted只会被调用一次。
使用mounted完成上述需求:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>分析生命周期</title> <script type="text/javascript" src="../js/vue.js"></script> </head> <body> <div id="root"> <h2 v-text="n"></h2> <h2>当前的n值是:{{n}}</h2> <button @click="add">点我n+1</button> <button @click="bye">点我销毁vm</button> </div> </body>
<script type="text/javascript"> Vue.config.productionTip = false
new Vue({ el: '#root', data() { return { n: 1, } }, methods: { add () { this.n ++ } }, beforeCreate() { console.log('beforeCreate') }, created() { console.log('created') }, beforeMount() { console.log('beforeMount') }, mounted() { console.log('mounted') }, beforeUpdate() { console.log('beforeUpdate') }, updated() { console.log('updated') }, beforeDestroy() { console.log('beforeDestroy') }, destroyed() { console.log('destroyed') }, }) </script> </html>
|
总结生命周期
常用的生命周期钩子:
- mounted: 发送ajax请求、启动定时器、绑定自定义事件、订阅消息等【初始化操作】。
- beforeDestroy: 清除定时器、解绑自定义事件、取消订阅消息等【收尾工作】。
关于销毁Vue实例:
- 销毁后借助Vue开发者工具看不到任何信息。
- 销毁后自定义事件会失效,但原生DOM事件依然有效。
- 一般不会在beforeDestroy操作数据,因为即便操作数据,也不会再触发更新流程了。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>生命周期总结</title> <script type="text/javascript" src="../js/vue.js"></script> </head> <body> <div id="root"> <h2 :style="{opacity}">欢迎学习Vue</h2> <button @click="opacity = 1">透明度设置为 1</button> <button @click="stop">点我停止行为</button> </div> </body>
<script type="text/javascript"> Vue.config.productionTip = false
new Vue({ el: '#root', data() { return { opacity:1 } }, methods: { stop () {
this.$destory() } }, mounted() { this.timer = setInterval(()=>{ this.opacity -= 0.01 if(this.opacity <= 0) this.opacity = 1 },16) }, beforeDestroy() { clearInterval(this.timer) }, }) </script> </html>
|
接下来学习
本文主要介绍Vue的一些简单语法,和概念。
其他内容请参看本博客其他后续链接: