Vue 3 基础

Vue.js 是一个基于 MVVM 架构的渐进式框架,可以动态构建用户界面,解耦视图和数据

一、概述

MVVM

  • M(model):构成页面内容的模型数据
  • V(view):展示数据的页面
  • VM(view model):将 model 中的数据解析到 view

开发者只需关心页面和数据的构成,无需关心页面和数据的状态关系,几乎不用操作 DOM 就可以完成页面和数据的交换

基本使用

  1. 获取 Vue 核心库的 js 文件
1
npm install vue
  1. 在页面中引入 Vue
1
<script src="js/vue.global.js"></script>

二、Vue 3 模板语法

Vue 插值语法

mustache

使用 mustache 语法把 data、method 中的文本数据插入到 HTML 代码中,形如 {{ exp }}

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<body>
<div id="app">
{{ name }}
</div>
</body>
<script>
//mustache语法
const app = Vue.createApp({
data() {
return {
name:"hello world"
}
}
}).mount('#app')
</script>

v-once

该指令后不需要跟表达式,表示元素和组件至渲染一次,不会随着数据改变而改变

1
2
3
4
<div id="vonce" v-once>
{{ name }}
<button @click="change">切换</button>
</div>

v-html

有时,我们从服务器请求到的数据是html代码,这时候用mustache语法会把html代码输出,但我们希望得到的是按照html格式来进行解析的内容,此时要用到 v-html

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<body>
<div id="vhtml" >
<div v-html="url"></div>
</div>
</body>
<script>
//v-html 语法
const vhtml = Vue.createApp({
data() {
return {
url:"<p>v-html test</p>"
}
}
}).mount('#vhtml')
</script>

v-pre

类似转义符,将内容原封不动的显示出来,不做任何解析

v-bind

网页中的属性、网址等,大多是从服务器请求得来的,这些数据暂存在 vue 中,在 HTML 中利用 v-bind 来实现动态绑定,该指令有一个语法糖,只留下一个 :

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<body>
<div id="vbind">
<h3 :class="{active : isActive, line : isLine}">
{{ name }}
</h3>
</div>
</body>
<script>
//v-bind 语法
const vhtml = Vue.createApp({
data() {
return {
url:"<p>v-html test</p>"
}
}
}).mount('#vbind')
</script>

事件处理

v-on

前端开发需要经常与用户进行交互,此时就需要监听用户事件,比如点击、拖拽等。在Vue中,我们使用 v-on 来监听事件,该指令同样有一个语法糖,直接使用 @ 绑定属性,当事件监听调用的方法没有参数时,可直接写方法名,不用加 ()

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<body>
<div id="von">
<p>{{ message }}</p>
<button @click="reversemsg">反转字符串</button>
</div>
</body>
<script>
//v-on 语法
const von = Vue.createApp({
data() {
return {
message: "12345678"
}
},
methods:{
reversemsg: function(){
this.message = this.message.split('').reverse().join('')
}
}
}).mount('#von')
</script>

v-on 修饰符

  • stop:点击某一块区域时,不想让其中其他的子区域也触发
  • prevent:防止表单进行提交,阻止事件的默认行为
  • once:事件只触发一次
  • keyup/keydown:监听某个按键的录入
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<body>
<div id="von">
<p>{{ message }}</p>
<button @click.once="reversemsg">反转字符串</button>
<input v-model="message" type="text" v-on:keyup.enter="keyclick">
</div>
</body>
<script>
const von = Vue.createApp({
data() {
return {
message: "12345678"
}
},
methods:{
reversemsg() {
this.message = this.message.split('').reverse().join('')
},
keyclick() {
alert(this.message)
}
}
}).mount('#von')
</script>

条件渲染与列表渲染

v-if

使用 v-ifv-elsev-else-if 做条件判断

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<body>
<div id="vif">
<h3 v-if="score >= 90">v-if 90</h3>
<h3 v-else-if="score >= 80">v-if 80</h3>
<h3 v-else>v-if else</h3>
</div>
</body>
<script>
//v-if 语法
const vif = Vue.createApp({
data() {
return {
score: 86
}
}
}).mount("#vif")
</script>

v-show

v-showv-if 类似,都能决定元素是否显示,区别在于条件为 false 时:

  • v-if 修饰的元素根本不会在 DOM 中
  • v-show 是新增一个行内样式 display:none

而条件为 true 时:

  • v-if 会再创建一个元素
  • v-show 只需要把 display 属性去掉即可

因此,当需要频繁切换时 v-show 更好,反之 v-if 更好

v-for

使用 v-for 遍历数组和对象,绑定 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
<body>
<div id="vfor">
<table style="border-collapse: collapse;">
<thead>
<tr>
<th v-for="item in items">{{ item }}</th>
</tr>
</thead>
<tbody>
<tr v-for="(item,index) in info" :key="index">
<th style="border: 1px solid #000;">{{ item.name }}</th>
<td style="border: 1px solid #000;">{{ item.age }}</th>
</tr>
</tbody>
</table>
</div>
</body>
<script>
//v-for 语法
const vfor = Vue.createApp({
data(){
return {
items: ['name','age'],
info:[{
name: "Judy",
age: 31
},{
name: "Tom",
age: 24
}]
}
}
}).mount("#vfor")
</script>

数据双向绑定

v-model

v-model 用以实现表单元素和数据的双向绑定,实际上就是两个语法的结合(v-bind 绑定一个value 属性,v-on 给当前元素绑定input 事件),可参考 v-on 修饰符代码实例

v-model 中的修饰符

  • lazy :默认情况下,v-model 是在 input 事件中同步输入框的数据,一旦数据有变,data 里面的数据也会自动改变;但有时我们不想让 data 中的数据立刻发生改变,就可以用 lazy 修饰符,让数据失去焦点或回车时才更新
1
2
3
<div>
<input type="text" v-model.lazy="message">
</div>
  • number :当我们往 input 里输入数字时,Vue 会自动把这些数字识别成字符串,如果想以数字的格式存储它,那么就需要添加 number 修饰符
1
2
3
<div>
<input type="text" v-model.number="age">
</div>
  • trim :如果想要去除 input 框中输入的空格,需要添加 trim 修饰符
1
2
3
<div>
<input type="text" v-model.trim="message">
</div>

三、数据控制

计算属性 computed

当需要对 data 里面的数据进行处理并显示时,需要用到 computed 属性。

相比 methods ,从最终的实现结果来看,两种方式是完全相同。然而,不同的是,计算属性将基于它们的响应依赖关系进行缓存,即计算属性只会在相关响应式依赖发生改变时重新求值,只要相关响应式依赖没有改变,计算属性会立即返回之前的计算结果,不必再重新执行函数。

因此,对于任何包含响应式数据的复杂逻辑,你都应该使用 计算属性

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<body>
<div id="computed">
<h3>
{{ fullname }}
</h3>
</div>
</body>
<script>
//computed 语法
const computed = Vue.createApp({
data(){
return {
firstname: "Stephen",
lastname: "Curry"
}
},
computed: {
fullname(){
return "computed-test: "+ this.firstname + " " + this.lastname
}
}
}).mount("#computed")
</script>

计算属性的 Setter

计算属性默认只有 getter,不过在需要的时候你也可以提供一个 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
<body>
<div id="computed">
<h3>
{{ fullname }}
</h3>
</div>
</body>
<script>
//computed 语法
const computed = Vue.createApp({
data(){
return {
firstname: "Stephen",
lastname: "Curry"
}
},
computed: {
fullname: {
get(){
return "computed-test: "+ this.firstname + " " + this.lastname
},
set(fullname){
const names = fullname.split(' ')
this.firstname = name[names.length - 2]
this.lastname = name[names.length - 1]
}
}
}
}).mount("#computed")
</script>

侦听器 watch

Vue 通过 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
<body>
<div id="watch">
<p>
Do an add calculation:
<input v-model="expr" />
</p>
<p>{{ answer }}</p>
</div>
</body>
<script>
//watch 语法
const watchExampleVM = Vue.createApp({
data() {
return {
expr: '1+1?',
answer: '2'
}
},
watch: {
// 每当 question 发生变化时,该函数将会执行
expr(newValue, oldValue) {
if (newValue.indexOf('?') > -1) {
this.getAnswer()
}
}
},
methods: {
getAnswer() {
exprs = this.expr.split("?")[0].split("+")
this.answer = eval(exprs[0])+eval(exprs[1])
}
}
}).mount('#watch')
</script>

四、组件基础

组件(Component)是 Vue.js 最强大的功能之一,组件可以扩展HTML元素,封装可重用代码,在较高层面上,组件是自定义元素,Vue.js 的编译器为它添加特殊功能。

组件注册

组件名

尽管当使用 PascalCase (首字母大写命名) 定义一个组件时,你在引用这个自定义元素时两种命名法都可以使用。也就是说 <my-component-name><MyComponentName> 都是可接受的。但实际上,直接在 DOM (即非字符串的模板) 中使用时只有 kebab-case (短横线分割命名)是有效的。

全局注册

使用 app.component 来全局注册组件,也就是说这些组件在注册之后可以用在任何新创建的组件实例模板中;在各子组件中也是如此,子组件内部也可以相互使用

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<body>
<div id="mycomponent">
<my-component-a></my-component-a>
</div>
</body>
<script>
//全局注册
const mycomponent = Vue.createApp({})

mycomponent.component('my-component-a',{
template: "<div>My Component A</div>"
})

mycomponent.mount("#mycomponent")
</script>

局部注册

全局注册往往是不够理想的。比如,如果你使用一个像 webpack 这样的构建系统,全局注册所有的组件意味着即便你已经不再使用其中一个组件了,它仍然会被包含在最终的构建结果中。这造成了用户下载的 JavaScript 的无谓的增加。

在这些情况下,你可以通过一个普通的 JavaScript 对象来定义组件 ,在 components 选项中定义想要使用的组件

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<body>
<div id="mycomponent">
<local-component-a></local-component-a>
</div>
</body>
<script>
//局部注册
const ComponentA = {
template: "<div>My Component A</div>"
}

const mycomponent1 = Vue.createApp({
components: {
'local-component-a': ComponentA
}
}).mount("#mycomponent")
</script>

注意 局部注册的组件在其子组件中不可用 , 如果你希望 ComponentAComponentB 中可用,则需要这样写:

1
2
3
4
5
6
7
8
9
10
const ComponentA = {
/* ... */
}

const ComponentB = {
components: {
'component-a': ComponentA
}
// ...
}

编译作用域

父组件模板的内容在父组件作用域内编译;子组件模板的内容在子组件作用域内编译。一个常见的错误是试图在父组件模板内将一个指令绑定到子组件的属性 / 方法上

1
<child-component v-show="childProperty"></child-component>

假定 childProperty 是子组件的属性,那上例会失效,父组件模板不应该知道子组件的状态,如果要绑定子组件内的指令应当这么做

1
2
3
4
5
6
7
8
const SimpleCounter = {
template: "<div v-show='childProperty'>1</div>",
data(){
return{
childProperty: true
}
}
}

构成组件

组件意味着协同工作,通常父子组件会是这样的关系:

组件 A 在它的模板中使用了组件 B 。它们之间必然要相互通信

  • 父组件要给子组件传递数据,这个过程使用 props
  • 子组件需要将它内部发生的事情告诉父组件,这个过程使用 events

Props

父组件可以使用 props 把数据传给子组件

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<body>
<div id="mycomponent">
<child message="parentmsg"></child>
</div>
</body>
<script>
const child = {
props: ['message'],
template: '<div>{{ message }}</div>'
}

const mycomponent1 = Vue.createApp({
components: {
'child': child
}
}).mount("#mycomponent")
</script>

也可以使用 v-bind 动态绑定 props 的值到父组件的数据中。每当父组件的数据变化是,该变化也会传导给子组件

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<body>
<div id="mycomponent">
<child :message="parentmsg"></child>
</div>
</body>
<script>
const child = {
props: ['message'],
template: '<div>{{ message }}</div>'
}

const mycomponent1 = Vue.createApp({
components: {
'child': child
},
data(){
return {
parentmsg: 'parent messsage'
}
}
}).mount("#mycomponent")
</script>

Events

子组件通过$emit 方法自定义触发一个事件来通知父组件完成相关操作,父组件就可以像处理原生 DOM 事件一样通过 v-on@ 监听子组件触发的事件

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
<body>
<div id="mycomponent">
<div>
<child
:message="parentmsg"
@enlarge-text="msgFontsize += 0.1"
:style="{ fontSize: msgFontsize + 'em'}">
</child>
</div>
</div>
</body>
<script>
const child = {
props: ['message'],
emits: ['enlargeText'],
template: `
<div>
<h4>{{ message }}</h4>
<button @click="$emit('enlargeText')">
Enlarge text
</button>
</div>
`
}

const mycomponent1 = Vue.createApp({
components: {
'child': child
},
data(){
return {
parentmsg: 'parent messsage',
msgFontsize: 1
}
}
}).mount("#mycomponent")
</script>

使用事件抛出一个值

有的时候用一个事件来抛出一个特定的值是非常有用的,这时可以使用 $emit 的第二个参数来提供这个值

1
2
3
<button @click="$emit('enlargeText',0.1)">
Enlarge text
</button>

然后在父组件监听时,可以通过 $event 访问到抛出的这个值

1
<child @enlarge-text="onEnlargeText"></child>

或者,这个事件处理函数是一个方法

1
<child @enlarge-text="onEnlargeText"></child>

那么这个值会作为第一个参数传入这个方法

1
2
3
4
5
methods: {
onEnlargeText(enlargeAmount){
msgFontsize += enlargeAmount
}
}

动态组件

有时候,在不同组件之间进行动态切换是非常有用的(例如多标签的界面),这时可通过 Vue 的 component 元素加一个特殊的 is attribute 来实现

1
<component :is="currentComponent"></component>

通过插槽分发内容

使用 <slot> 作为我们想要插入内容的占位符,在其标签中的任何内容都会被视为备用内容,只有当父组件要插入的内容为空时显示

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<body>
<div id="mycomponent">
<local-component-a>There is a tiger.</local-component-a>
</div>
</body>
<script>
//slot
const ComponentA = {
template: `
<div>
<strong>Look Up!</strong>
<slot></slot>
</div>
`
}

const mycomponent1 = Vue.createApp({
components: {
'local-component-a': ComponentA
}
}).mount("#mycomponent")
</script>

参考:Vue示例

五、生命周期

图示

https://v3.cn.vuejs.org/images/lifecycle.svg


Vue 3 基础
http://dunkingcurry30.github.io/2022/06/14/Vue笔记/
作者
Dunking Curry
发布于
2022年6月14日
许可协议