Vue3 Composition API 之 setup 函数

举报
青年码农 发表于 2022/09/02 23:17:25 2022/09/02
【摘要】 点击上方“青年码农”关注 回复“源码”可获取各种资料 Vue 3 中引入的一种新的编写 Vue 组件的方式,可以将 2.x 中与组件逻辑相关的选项以 API 函数的形式重新设计。 在说 Vue3 之前,我们先看看 Vue2 项目中是如何编写逻辑代码的,新建一个组件 <template> &nb...

点击上方“青年码农”关注

回复“源码”可获取各种资料

Vue 3 中引入的一种新的编写 Vue 组件的方式,可以将 2.x 中与组件逻辑相关的选项以 API 函数的形式重新设计。

在说 Vue3 之前,我们先看看 Vue2 项目中是如何编写逻辑代码的,
新建一个组件


   
  1. <template>
  2.   <div></div>
  3. </template>
  4. <script>
  5. export default {
  6.   name: "demo",
  7.   props: {},
  8.   data() {
  9.     return {};
  10.   },
  11.   created() {},
  12.   watch: {},
  13.   computed: {},
  14.   methods: {}
  15. };
  16. </script>
  17. <style></style>

每个属性都有自己的功能,比如 data 定义数据、methods 中定义方法、computed 中定义计算属性、watch 中监听属性改变,小项目中这种方式确实能带来很大的便利,但是当我们组件变得更大,更复杂时,逻辑会不断增长,那么同一个功能的逻辑就会被拆分的很分散。尤其是对于后面接手的同事,可读性会很低,很难理解。一个功能会跳到多个地方,比较容易出差错,而且后期维护会很复杂。

是不是可以将一个功能点涉及到的数据和逻辑组织到一起,Composition API 就这么诞生了,它很好的解决了上面的问题。接下来认识下 Composition API,由于对 TS 支持更友好,所以 demo 用 ts 做示例


   
  1. <template>
  2.   <div>
  3.     <a-button type="primary" @click="getValue(22)">Primary Button</a-button>
  4.     <a-input v-model:value="count"></a-input>
  5.     <div>{{ count }}</div>
  6.     <div>{{ x }}-{{ y }}</div>
  7.     <a-button @click="add">点击</a-button>
  8.     <div>{{ counter.count }}</div>
  9.   </div>
  10. </template>
  11. <script setup lang="ts">
  12. import { ref, onMounted } from "vue";
  13. import { postLogin } from "@/api/user";
  14. import { useMouse } from "@/hooks/main";
  15. import { useCounterStore } from "@/store/modules/counter";
  16. defineProps<{ msg: string }>();
  17. // 获取鼠标位置信息
  18. const { x, y } = useMouse();
  19. const counter = useCounterStore();
  20. function add() {
  21.   counter.count++;
  22.   counter.$patch({ count: counter.count });
  23.   counter.increment();
  24. }
  25. // 获取数据
  26. function getdata(title?: string) {
  27.   postLogin({ username: "22", password: "33" })
  28.     .then(res => {
  29.       console.log(res);
  30.     })
  31.     .catch(err => {
  32.       console.log("0000");
  33.     });
  34. }
  35. // 获取值
  36. const count = ref(0);
  37. function getValue(value?: any): void {
  38.   count.value = value;
  39. }
  40. </script>
  41. <style scoped lang="less">
  42. .read-the-docs {
  43.   color: #888;
  44. }
  45. .vue {
  46.   .vue-child {
  47.     font-size: 40px;
  48.     background: @main-color-theme1;
  49.   }
  50. }
  51. </style>

代码中我们可以看到,少了一些选项,功能点逻辑更加集中,看不懂没关系,这里只是演示,后面会详细讲解,这篇文章主要讲解 Composition API 的 setup 函数

一 setup 函数

setup 其实就是组件的另外一个选项,只不过这个选项强大到我们可以使用它来替代之前所编写的大部分其他选项,比如:methods、computed、data、生命周期等选项。

参数


   
  1. props:父组件传递过来的属性
  2. context:是一个普通的 JavaScript 对象,它暴露三个组件的 property
props

因为 props 是响应式的,你不能使用 ES6 解构,因为它会消除 prop 的响应性。如果需要解构 prop,可以通过使用 setup 函数中的 toRefs 来安全地完成此操作。

Vue3.0 使用


   
  1. <script>
  2. export default {
  3.   setup (props) {
  4.    return {}
  5.   }
  6. }
  7. </script>

Vue3.2 使用


   
  1. <script setup>
  2. export default {
  3.   const props = defineProps({
  4.     treeCode: String,
  5.   });
  6. }
  7. </script>

script setup 是一种编译时语法糖,可在 SFC 内使用 Composition API 时极大地提升工作效率。

context

里面包含有三个属性 attrs、slots 和 emit

(1)attrs:里面包含了所有的非 props 属性。
(2)slots:父组件传递过来的插槽。
(3)emit:当我们组件内部需要发出事件时会用到 emit。

Vue3.0 使用


   
  1. <script>
  2. export default {
  3.   setup (props.{attrs,slots,emit}) {
  4.    return {}
  5.   }
  6. }
  7. </script>

Vue3.2 使用


   
  1. <script setup>
  2. export default {
  3.   // defineProps
  4.   const props = defineProps({
  5.     treeCode: String,
  6.   });
  7.   // defineEmits
  8.   const emit = defineEmits(['on-confirm'])
  9.   // useSlots
  10.   const slots = useSlots()
  11. }
  12. </script>

在 script setup 使用 slots 和 attrs 的情况应该是很比较少见的,大部分人是(SFC)模式开发,在 template 通过 slot 标签就可以渲染插槽,可以在模板中通过 和attrs 来访问它们。主要在 JSX /TSX 使用比较多。

this

setup 不可以使用 this

setup() 自身并不含对组件实例的访问权,即在 setup() 中访问 this 会是 undefined。我们可以理解为:this未指向当前的组件实例,在setup被调用之前,data,methods,computed等都没有被解析,但是组件实例确实在执行setup函数之前就已经被创建好了。

文章来源: blog.csdn.net,作者:NMGWAP,版权归原作者所有,如需转载,请联系作者。

原文链接:blog.csdn.net/NMGWAP/article/details/126654168

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。