认识Vue3
1. Vue3组合式API体验
通过 Counter 案例 体验Vue3新引入的组合式API
<script>
export default {
data(){
return {
count:0
}
},
methods:{
addCount(){
this.count++
}
}
}
</script>
<script setup>
import { ref } from 'vue'
const count = ref(0)
const addCount = ()=> count.value++
</script>
特点:
- 代码量变少
- 分散式维护变成集中式维护
2. Vue3更多的优势
使用create-vue搭建Vue3项目
1. 认识create-vue
create-vue是Vue官方新的脚手架工具,底层切换到了 vite (下一代前端工具链),为开发提供极速响应
2. 使用create-vue创建项目
前置条件 - 已安装16.0或更高版本的Node.js
执行如下命令,这一指令将会安装并执行 create-vue
npm init vue@latest
熟悉项目和关键文件
组合式API - setup选项
1. setup选项的写法和执行时机
写法
<script>
export default {
setup(){
},
beforeCreate(){
}
}
</script>
执行时机
在beforeCreate钩子之前执行
2. setup中写代码的特点
在setup函数中写的数据和方法需要在末尾以对象的方式return,才能给模版使用
<script>
export default {
setup(){
const message = 'this is message'
const logMessage = ()=>{
console.log(message)
}
// 必须return才可以
return {
message,
logMessage
}
}
}
</script>
3. <script setup>语法糖
script标签添加 setup标记,不需要再写导出语句,默认会添加导出语句
<script setup>
const message = 'this is message'
const logMessage = ()=>{
console.log(message)
}
</script>
组合式API - reactive和ref函数
1. reactive
接受对象类型数据的参数传入并返回一个响应式的对象
<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
接收简单类型或者对象类型的数据传入并返回一个响应式的对象
<script setup>
// 导入
import { ref } from 'vue'
// 执行函数 传入参数 变量接收
const count = ref(0)
const setCount = ()=>{
// 修改数据更新视图必须加上.value
count.value++
}
</script>
<template>
<button @click="setCount">{{count}}</button>
</template>
在template中直接使用ref变量时不用加.value
<script setup>
import { ref } from "vue";
const count = ref(1);
const addCount = (num) => {
count.value += num;
};
</script>
<template>
{{ count }}
<button @click="addCount(1)">+1</button>
</template>
<script setup>
import { ref } from "vue";
const count = ref(1);
</script>
<template>
{{ count }}
<button @click="count++">+1</button>
<!-- <button @click="count.value++">+1</button> 错误!!!-->
</template>
3. reactive 对比 ref
- 都是用来生成响应式数据
- 不同点
- reactive不能处理简单类型的数据
- ref参数类型支持更好,但是必须通过.value做访问修改
- ref函数内部的实现依赖于reactive函数
- 在实际工作中的推荐
- 推荐使用ref函数,减少记忆负担
组合式API - computed
计算属性基本思想和Vue2保持一致,组合式API下的计算属性只是修改了API写法
<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(() => {
return list.value.filter((item) => item > 2);
});
</script>
组合式API - watch
侦听一个或者多个数据的变化,数据变化时执行回调函数,俩个额外参数 immediate控制立刻执行,deep开启深度侦听
1. 侦听单个数据
<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. 侦听多个数据
侦听多个数据,第一个参数可以改写成数组的写法
<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
在侦听器创建时立即出发回调,响应式数据变化之后继续执行回调
<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
<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>
精确侦听对象的某个属性
<script setup>
import { ref, watch } from "vue";
// 精确侦听对象的某个属性
// 需求:在不开启deep的前提下,侦听age的变化,只有在age变化时才执行回调
const info = ref({ name: "lxx", age: 18 });
// 侦听哪个属性,就把它换成函数的形式return出来作为第一个参数
// deep会进行递归操作有性能损耗,尽量不开启deep
watch(
() => info.value.age,
() => {
console.log("age变化了");
}
);
const change = () => {
info.value.age++;
};
</script>
组合式API - 生命周期函数
1. 选项式对比组合式
2. 生命周期函数基本使用
- 导入生命周期函数
- 执行生命周期函数,传入回调
<scirpt setup>
import { onMounted } from 'vue'
onMounted(()=>{
// 自定义逻辑
})
</script>
3. 执行多次
生命周期函数执行多次的时候,会按照
顺序依次执行
<scirpt setup>
import { onMounted } from 'vue'
onMounted(()=>{
// 自定义逻辑
})
onMounted(()=>{
// 自定义逻辑
})
</script>
组合式API - 父子通信
1. 父传子
基本思想
- 父组件中给子组件绑定属性
- 子组件内部通过props选项接收数据
注意:
在setup语法糖下,局部组件无需注册即可直接使用
2. 子传父
基本思想
- 父组件中给子组件标签通过@绑定事件
- 子组件内部通过 emit 方法触发事件
3.演示
父:
<script setup>
import SonVue from "./components/Son.vue";
import { ref } from "vue";
const count = ref(0);
</script>
<template>
<h1>父组件</h1>
{{ count }} <button @click="count++">+1</button>
<hr />
<son-vue
:count="count"
@add-count="
(num) => {
count += num;
}
"
></son-vue>
</template>
子:
<script setup>
const props = defineProps({
count: Number,
});
const emit = defineEmits(["add-count"]);
</script>
<template>
<h1>子组件</h1>
{{ count }} <button @click="emit('add-count', 2)">+2</button>
</template>
组合式API - 模版引用
概念:通过 ref标识 获取真实的 dom对象或者组件实例对象
1. 基本使用
实现步骤:
- 调用ref函数生成一个ref对象
- 通过ref标识绑定ref对象到标签
2. defineExpose
默认情况下在 <script setup>语法糖下组件内部的属性和方法是不开放给父组件访问的,可以通过defineExpose编译宏指定哪些属性和方法容许访问
说明:指定testMessage属性可以被访问到
<script setup>
import { ref, onMounted } from "vue";
import SonVue from "./components/Son.vue";
//获取组件实例对象
const son = ref(null);
//组件挂载完毕之后才能获取
onMounted(() => {
console.log(son.value);
});
</script>
<template>
<son-vue ref="son"></son-vue>
</template>
<script setup>
import { ref } from "vue";
const num = ref(22);
const fun = () => {
console.log(666);
};
defineExpose({
num,
fun,
});
</script>
<template>
</template>
组合式API - provide和inject
1. 作用和场景
顶层组件向任意的底层组件传递数据和方法,实现跨层组件通信
2. 跨层传递普通数据
实现步骤
- 顶层组件通过
provide
函数提供数据- 底层组件通过
inject
函数提供数据
3. 跨层传递响应式数据
在调用provide函数时,第二个参数设置为ref对象
4. 跨层传递方法
顶层组件可以向底层组件传递方法,底层组件调用方法修改顶层组件的数据
5.案例
父:
<script setup>
import { ref, provide } from "vue";
import Son from "./components/Son.vue";
const count = ref(1);
provide("count", count);
provide("setCount", (num) => {
count.value += num;
});
</script>
<template>
父:{{ count }}
<button @click="count++">+1</button>
<hr />
<Son></Son>
</template>
子:
<script setup>
import GrandSon from "./GrandSon.vue";
</script>
<template>
子:
<hr />
<GrandSon></GrandSon>
</template>
孙:
<script setup>
import { inject } from "vue";
const count = inject("count");
const setCount = inject("setCount");
</script>
<template>
孙:{{ count }}
<button @click="setCount(2)">+2</button>
<hr />
</template>
综合案例
main.js
import { createApp } from "vue"
// 导入 ElementPlus 和 样式文件
import ElementPlus from "element-plus"
import "element-plus/dist/index.css"
import App from "./App.vue"
const app = createApp(App)
// 使用 ElementPlus
app.use(ElementPlus)
app.mount("#app")
App.vue
<script setup>
import Edit from "./components/Edit.vue";
import { onMounted, ref } from "vue";
import axios from "axios";
// TODO: 列表渲染
//思路:声明响应式数据list=>调用接口获取数据=>后端数据赋值给list=>绑定到table组件
const list = ref([]);
const getList = async () => {
//调用接口
const res = await axios.get("/list");
list.value = res.data;
};
onMounted(() => getList());
// TODO: 删除功能
const del = async ({ id }) => {
//调用接口删除数据
await axios.delete(`/del/${id}`);
//重新渲染数据
getList();
};
// TODO: 编辑功能
// 拿到组件实例
const editRef = ref(null);
// 调用组件方法
const showDialog = (row) => {
editRef.value.open(row);
};
</script>
<template>
<div class="app">
<el-table :data="list">
<el-table-column label="ID" prop="id"></el-table-column>
<el-table-column label="姓名" prop="name" width="150"></el-table-column>
<el-table-column label="籍贯" prop="place"></el-table-column>
<el-table-column label="操作" width="150">
<template #default="{ row }">
<el-button type="primary" link @click="showDialog(row)">编辑</el-button>
<el-button type="danger" link @click="del(row)">删除</el-button>
</template>
</el-table-column>
</el-table>
</div>
<Edit ref="editRef" @update-list="getList" />
</template>
<style scoped>
.app {
width: 980px;
margin: 100px auto 0;
}
</style>
Edit.vue
<script setup>
import axios from "axios";
// TODO: 编辑
import { ref } from "vue";
// 弹框开关
const dialogVisible = ref(false);
// 表单数据
const form = ref({
id: "",
name: "",
place: "",
});
//打开弹窗
const open = ({ id, name, place }) => {
dialogVisible.value = true;
// 数据回显
form.value.id = id;
form.value.name = name;
form.value.place = place;
};
// 提交表单
const emit = defineEmits(["update-list"]);
const confirmUpdate = async () => {
// 提交接口
await axios.patch(`/edit/${form.value.id}`, {
name: form.value.name,
place: form.value.place,
});
// 关闭弹框
dialogVisible.value = false;
// 通知父组件拉取最新列表
emit("update-list");
};
//默认情况下在 <script setup>语法糖下组件内部的属性和方法是不开放给父组件访问的,可以通过defineExpose编译宏指定哪些属性和方法容许访问
defineExpose({
open,
});
</script>
<template>
<el-dialog v-model="dialogVisible" title="编辑" width="400px">
<el-form :model="form" label-width="50px">
<el-form-item label="姓名">
<el-input v-model="form.name" placeholder="请输入姓名" />
</el-form-item>
<el-form-item label="籍贯">
<el-input v-model="form.place" placeholder="请输入籍贯" />
</el-form-item>
</el-form>
<template #footer>
<span class="dialog-footer">
<el-button @click="dialogVisible = false">取消</el-button>
<el-button type="primary" @click="confirmUpdate">确认</el-button>
</span>
</template>
</el-dialog>
</template>
<style scoped>
.el-input {
width: 290px;
}
</style>