vue3学习

vue2 与 vue3对比

Vue2 选项式 API vs Vue3 组合式API

1
2
3
4
5
6
7
8
9
10
11
12
13
14
<script>
export default {
data(){
return {
count:0
}
},
methods:{
addCount(){
this.count++
}
}
}
</script>
1
2
3
4
5
<script setup>
import { ref } from 'vue'
const count = ref(0)
const addCount = ()=> count.value++
</script>
  1. 代码量变少
  2. 分散式维护变成集中式维护

vue3优点

更容易维护:

1.组合式的api

2.更好的typescript支持

更快的速度:

1.重写diff算法

2.模板编译优化

3.更高效的组件初始化

更小的体积:

  1. 良好的TreeShak
  2. 按需引入

更优的数据响应式:

1.proxy

create-vue

create-vue是Vue官方新的脚手架工具,底层切换到了 vite (下一代前端工具链),为开发提供极速响应

组合式API - setup

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<script>
export default {
setup(){
const message = 'this is message'
const logMessage = ()=>{
console.log(message)
}
// 必须return才可以
return {
message,
logMessage
}
}
}
</script>

在setup函数中写的数据和方法需要在末尾以对象的方式return,才能给模版使用。

1
<script setup>语法糖

script标签添加 setup标记,不需要再写导出语句,默认会添加导出语句

1
2
3
4
5
6
<script setup>
const message = 'this is message'
const logMessage = ()=>{
console.log(message)
}
</script>

组合式API - reactive和ref函数

1. reactive

接受对象类型数据的参数传入并返回一个响应式的对象

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<script setup>
// 导入
import { reactive } from 'vue'
// 执行函数 传入参数 变量接收
const state = reactive({
msg:'this is msg'
})
const setSate = ()=>{
// 修改数据更新视图
state.msg = 'this is new msg'
}
</script>

<template>
{{ state.msg }}
<button @click="setState">change msg</button>
</template>

2. ref

接收简单类型或者对象类型的数据传入并返回一个响应式的对象

1
2
3
4
5
6
7
8
9
10
11
12
13
14
<script setup>
// 导入
import { ref } from 'vue'
// 执行函数 传入参数 变量接收
const count = ref(0)
const setCount = ()=>{
// 修改数据更新视图必须加上.value
count.value++
}
</script>

<template>
<button @click="setCount">{{count}}</button>
</template>

3. reactive 对比 ref

  1. 都是用来生成响应式数据
  2. 不同点
    1. reactive不能处理简单类型的数据
    2. ref参数类型支持更好,但是必须通过.value做访问修改
    3. ref函数内部的实现依赖于reactive函数
  3. 在实际工作中的推荐
    1. 推荐使用ref函数,减少记忆负担

组合式API - computed

计算属性基本思想和Vue2保持一致,组合式API下的计算属性只是修改了API写法

1
2
3
4
5
6
7
8
9
10
11
12
13
<script setup>
// 导入
import {ref, computed } from 'vue'
// 原始数据
const count = ref(0)
// 计算属性
const doubleCount = computed(()=>count.value * 2)

// 原始数据
const list = ref([1,2,3,4,5,6,7,8])
// 计算属性list
const filterList = computed(item=>item > 2)
</script>

组合式API - watch

侦听一个或者多个数据的变化,数据变化时执行回调函数,俩个额外参数 immediate控制立刻执行,deep开启深度侦听

1. 侦听单个数据

1
2
3
4
5
6
7
8
9
<script setup>
// 1. 导入watch
import { ref, watch } from 'vue'
const count = ref(0)
// 2. 调用watch 侦听变化
watch(count, (newValue, oldValue)=>{
console.log(`count发生了变化,老值为${oldValue},新值为${newValue}`)
})
</script>

2. 侦听多个数据

侦听多个数据,第一个参数可以改写成数组的写法

1
2
3
4
5
6
7
8
9
10
<script setup>
// 1. 导入watch
import { ref, watch } from 'vue'
const count = ref(0)
const name = ref('cp')
// 2. 调用watch 侦听变化
watch([count, name], ([newCount, newName],[oldCount,oldName])=>{
console.log(`count或者name变化了,[newCount, newName],[oldCount,oldName])
})
</script>

3. immediate

在侦听器创建时立即出发回调,响应式数据变化之后继续执行回调

1
2
3
4
5
6
7
8
9
10
11
<script setup>
// 1. 导入watch
import { ref, watch } from 'vue'
const count = ref(0)
// 2. 调用watch 侦听变化
watch(count, (newValue, oldValue)=>{
console.log(`count发生了变化,老值为${oldValue},新值为${newValue}`)
},{
immediate: true
})
</script>

4. deep

通过watch监听的ref对象默认是浅层侦听的,直接修改嵌套的对象属性不会触发回调执行,需要开启deep

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
<script setup>
// 1. 导入watch
import { ref, watch } from 'vue'
const state = ref({ count: 0 })
// 2. 监听对象state
watch(state, ()=>{
console.log('数据变化了')
})
const changeStateByCount = ()=>{
// 直接修改不会引发回调执行
state.value.count++
}
</script>

<script setup>
// 1. 导入watch
import { ref, watch } from 'vue'
const state = ref({ count: 0 })
// 2. 监听对象state 并开启deep
watch(state, ()=>{
console.log('数据变化了')
},{deep:true})
const changeStateByCount = ()=>{
// 此时修改可以触发回调
state.value.count++
}
</script>

组合式API - 生命周期函数

1. 选项式对比组合式

选项式 组合式
beforeCreate/created setup
beforeMount onBeforeMount
mounted onMounted
beforeUpdate onBeforeUpdate
updated onUpdated
beforeUnmount onBeforeUnmount
unmounted onUnmounted

2. 生命周期函数基本使用

  1. 导入生命周期函数
  2. 执行生命周期函数,传入回调
1
2
3
4
5
6
<scirpt setup>
import { onMounted } from 'vue'
onMounted(()=>{
// 自定义逻辑
})
</script>

3. 执行多次

生命周期函数执行多次的时候,会按照顺序依次执行

1
2
3
4
5
6
7
8
9
10
<scirpt setup>
import { onMounted } from 'vue'
onMounted(()=>{
// 自定义逻辑
})

onMounted(()=>{
// 自定义逻辑
})
</script>

组合式API - 父子通信

1. 父传子

基本思想

  1. 父组件中给子组件绑定属性
  2. 子组件内部通过props选项接收数据
1
2
3
4
5
6
7
8
<script setup>
//引入子组件
import sonComVue from './sonCom.vue'
</script>
<template>
<!-- 1.绑定属性 message-->
<sonComVue message="this is app message">
</template>
1
2
3
4
5
6
7
8
9
<script setup>
// 2.通过 defineProps"编译器宏"接收子组件传递的数据
const props = defineProps({
message: String
})
</script>
<template>
{{ message }}
</template>

2. 子传父

基本思想

  1. 父组件中给子组件标签通过@绑定事件
  2. 子组件内部通过 emit 方法触发事件
1
2
3
4
5
6
7
8
9
10
11
<script setup>
//引入子组件
import sonComVue from './son-com.vue'
const getMessage:=(msg)=>{
console.log(msg)
}
</script>
<template>
<!-- 1. 绑定自定义事件-->
<sonComVue @get-message="getMessage” />
</template>
1
2
3
4
5
6
7
8
9
10
11
12
<script setup>
//2.通过 defineEmits编译器宏生成emit方法
const emit = defineEmits(['get-message'])

const sendMsg =()=>{
//3.触发自定义事件 并传递参数
emit('get-message','this is son msg')
}
</script>
<template>
<button @click="sendMsg">sendMsg</button>
</template>

组合式API - 模版引用

概念:通过 ref标识 获取真实的 dom对象或者组件实例对象

1. 基本使用

实现步骤:

  1. 调用ref函数生成一个ref对象
  2. 通过ref标识绑定ref对象到标签
1
2
3
4
5
6
7
8
9
<script setup>
import { ref } from 'vue'
//1.调用ref函数得到ref对象
const h1Ref = ref(null)
</script>
<template>
<!-- 2. 通过ref标识绑定ref对象 -->
<h1 ref="h1Ref">我是dom标签h1</h1>
</template>

2. defineExpose

默认情况下在 script setup语法糖下组件内部的属性和方法是不开放给父组件访问的,可以通过defineExpose编译宏指定哪些属性和方法容许访问
说明:指定testMessage属性可以被访问到

1
2
3
4
<script setup>
import { ref } from 'vue'
const testMessage = ref('this is test msg')
</script>
1
2
3
4
5
6
7
<script setup>
import { ref }i'vuerom
const testMessage = ref('this is test msg')
defineExpose({
testMessage
})
</script>

组合式API - provide和inject

1. 作用和场景

顶层组件向任意的底层组件传递数据和方法,实现跨层组件通信

2. 跨层传递普通数据

实现步骤

  1. 顶层组件通过 provide 函数提供数据
  2. 底层组件通过 inject 函数提供数据

顶层组件:

1
provide('key', "数据")

底层组件:

1
const message = inject('key')

3. 跨层传递响应式数据

在调用provide函数时,第二个参数设置为ref对象

顶层组件:

1
provide('app-key', ref对象)

底层组件:

1
const message = inject('app-key')

4. 跨层传递方法

顶层组件可以向底层组件传递方法,底层组件调用方法修改顶层组件的数据

顶层组件:

1
2
3
4
const setCount = () => {
count.value++
}
provide('setCountKey', setCount)

底层组件:

1
const setCount = inject('setCountKey')

Vue3.3 新特性-defineOptions

背景说明:

有 script setup 之前,如果要定义 props, emits 可以轻而易举地添加一个与 setup 平级的属性。

但是用了 script setup 后,就没法这么干了 setup 属性已经没有了,自然无法添加与其平级的属性。


为了解决这一问题,引入了 defineProps 与 defineEmits 这两个宏。但这只解决了 props 与 emits 这两个属性。

如果我们要定义组件的 name 或其他自定义的属性,还是得回到最原始的用法——再添加一个普通的 script 标签。

这样就会存在两个 script标签。让人无法接受。


所以在 Vue 3.3 中新引入了 defineOptions 宏。顾名思义,主要是用来定义 Options API 的选项。可以用 defineOptions 定义任意的选项, props, emits, expose, slots 除外(因为这些可以使用 defineXXX 来做到)

1
2
3
4
5
6
7
<script setup>
defineOptions({
name:'Foo',
inheritAttrs: false,
//..更多自定义属性
})
</script>

Vue3.3新特性-defineModel

在Vue3中,自定义组件上使用v-model, 相当于传递一个modelValue属性,同时触发 update:modelValue 事件

1
2
3
<Child v-model="isVisible">
// 相当于
<Child :modelValue="isVisible" @update:modelValue="isVisible=$event">

我们需要先定义 props,再定义 emits 。其中有许多重复的代码。如果需要修改此值,还需要手动调用 emit 函数。

于是乎 defineModel 诞生了。

1
2
3
4
<script setup>
const modelValue = defineModel()
modelValue.value++
</script>

生效需要配置 vite.config.js

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { fileURLToPath, URL } from 'node:url'

import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'

// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue({
script: {
defineModel: true
}
}),
],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
}
})

vue3学习
http://hanqichuan.com/2024/10/18/前端/vue3学习/
作者
韩启川
发布于
2024年10月18日
许可协议