一、Composition API概述

  1. 当我们编写Vue组件时候,组件中可能包含一系列的功能,例如一个代码仓库管理的应用,用户的仓库列表可以看做是一个组件,这个组件还包含筛选、搜索的功能。

所谓的功能我们可以理解为MVC中的Model和Controller。从视图角度,组件是最基本的代码复用单元,但是从逻辑上,功能模块是最基本的代码复用单元。

每个组件中可能包含多个功能(也称为关注点),而多个功能的代码会分散在Vue组件的各个部分:data/props/watch/computed/dom event callback/lifescycle。

这会带来两个问题:

  1. 可读性和可维护性差,比如我们想要阅读某个功能的逻辑,需要翻遍整个组件,到处查看相应的逻辑;当需要改动某个功能时候,需要在很多地方进行改动。
  2. Vue未提供功能模块级别的代码复用支持,只提供组件级别的复用的话,在大型项目中是不够的。

为了解决上面两个问题,Vue需要提供功能模块级别的代码组织方式,即需要将同一个功能模块的代码写在同一片区域,而不是分散到组件的各个API中,另外还需要支持功能模块的封装,以便我们可以提取功能模块的代码进行复用。

如何实现上述两个能力呢?我们看看一个功能模块都包含哪些内容。

  1. 数据
  2. 数据的计算
  3. 数据的更新
  4. 数据监听

其中数据部分的代码写在Vue组件中的data、props中

数据计算部分的代码写在Vue组件中的computed和处理数据的方法中

数据更新部分代码写在生命周期钩子方法和交互事件中

数据监听代码写在watch中

因此我们希望Vue能提供一个API,让我们把一个功能模块(即关注点)的这些代码(包括data/props/computed/watch/dom event callback/lifecycle)都写在一起。并且能将其提取。

组合式API就提供了这样的能力。

总之,组合式API是在Vue3中新增加的API,它有两点优势:

  1. 让功能模块代码(关注点)聚合在一起,使可读性和可维护性更高。
  2. 提供了一种功能模块级别的复用代码的方式。

二、Composition API使用

开发者如何使用组合式API呢?简单地说,需要在Vue组件里实现setup方法,并在方法中返回一些方法和属性,返回的所有内容都将暴露给组件的其余部分 (计算属性、方法、生命周期钩子等等) 以及组件的模板。

首先看一个简单的例子,下面是一个单文件组件
  1. <template>
  2. <div id="app">
  3. <span class="counter">
  4. {{counter}}
  5. <button @click="increase">+1</button>
  6. </span>
  7. <div class="msg-panel">
  8. <span v-if="showMsg">
  9. hello, world
  10. </span>
  11. <button @click="toggleShowCondition">{{showWhenOdd ? '奇数展示' : '偶数展示'}}</button>
  12. </div>
  13. </div>
  14. </template>
  15. <script>
  16. export default {
  17. data() {
  18. return {
  19. counter: 0,
  20. showWhenOdd: true
  21. };
  22. },
  23. computed: {
  24. showMsg() {
  25. return this.counter % 2 === 0
  26. ? this.showWhenOdd
  27. : !this.showWhenOdd;
  28. }
  29. },
  30. mounted() {
  31. this.counter = Math.floor(Math.random() * 9) + 1;
  32. },
  33. methods: {
  34. increase() {
  35. this.counter++;
  36. },
  37. toggleShowCondition() {
  38. this.showWhenOdd = !this.showWhenOdd;
  39. }
  40. }
  41. };
  42. </script>
  43. <style scoped>
  44. #app {
  45. text-align: center;
  46. margin-top: 60px;
  47. }
  48. .counter {
  49. width: 100px;
  50. height: 100px;
  51. border: 1px solid;
  52. padding: 10px;
  53. }
  54. .msg-panel {
  55. width: 100px;
  56. height: 100px;
  57. margin: 50px auto;
  58. border: 1px solid;
  59. padding: 10px;
  60. }
  61. </style>

效果如下:

Vue Composition API(组合式API) - 图1

这个组件有两个功能

  1. 展示一个计数器,计数器初始化计数是1-10之间的一个随机数,每次点击”+1”按钮会让计数加1,计数实时展示在界面上
  2. 信息展示,仅当计数为偶数时候,才会展示”hello, world”信息。也可以通过点击”奇数展示”按钮来控制 仅当计数为奇数时候展示信息。

理解了上面的功能的实现之后我们再来看下使用组合式API如何实现相同的功能。

  1. <template>
  2. <div id="app">
  3. <span class="counter">
  4. {{counter}}
  5. <button @click="increase">+1</button>
  6. </span>
  7. <div class="msg-panel">
  8. <span v-if="showMsg">
  9. hello, world
  10. </span>
  11. <button @click="toggleShowCondition">{{showWhenOdd ? '奇数展示' : '偶数展示'}}</button>
  12. </div>
  13. </div>
  14. </template>
  15. <script>
  16. import {ref, onMounted, computed} from 'vue';
  17. export default {
  18. setup() {
  19. // counter逻辑
  20. const counter = ref(0);
  21. const increase = () => {
  22. counter.value++;
  23. };
  24. onMounted(() => {
  25. counter.value = Math.floor(Math.random() * 9) + 1;
  26. });
  27. // 提示信息逻辑
  28. const showWhenOdd = ref(true);
  29. const showMsg = computed(() => {
  30. return counter.value % 2 === 0
  31. ? showWhenOdd.value
  32. : !showWhenOdd.value;
  33. });
  34. const toggleShowCondition = () => {
  35. showWhenOdd.value = !showWhenOdd.value;
  36. };
  37. return {
  38. counter,
  39. increase,
  40. showWhenOdd,
  41. showMsg,
  42. toggleShowCondition
  43. };
  44. }
  45. };
  46. </script>
  47. <style scoped>
  48. #app {
  49. text-align: center;
  50. margin-top: 60px;
  51. }
  52. .counter {
  53. width: 100px;
  54. height: 100px;
  55. border: 1px solid;
  56. padding: 10px;
  57. }
  58. .msg-panel {
  59. width: 100px;
  60. height: 100px;
  61. margin: 50px auto;
  62. border: 1px solid;
  63. padding: 10px;
  64. }
  65. </style>

上面使用了组合式API的示例实现了相同的功能,注意:

  1. 之前的各种Vue组件的属性 data/methods/computed/mounted等被setup方法代替,setup方法返回的值里面包括模板需要用到的数据和方法。
  2. 之前组件的data里面的数据(counter、showWhenOdd)用ref(<初始值>)代替,数据使用时候,需要通过.value取值。
  3. 之前写在methods中的方法都在setup方法里面实现并返回。
  4. 之前写在computed中的计算属性通过vue中的computed实现,computed接受一个函数,函数返回计算结果。
  5. 之前生命周期钩子mounted被setup中通过onMounted包裹的函数来代替。

对比两段代码我们可以看出,使用setup API的实现明显可以将两段功能逻辑(counter展示提示信息)各自聚合在一起

Vue Composition API(组合式API) - 图2

这样就实现了我们之前提到的“让功能模块代码(关注点)聚合在一起,使可读性和可维护性更高”的效果,如果我们还希望实现“提供了一种功能模块级别的复用代码的方式”,我们可以这样组织代码:

  1. <template>
  2. <div id="app">
  3. <span class="counter">
  4. {{counter}}
  5. <button @click="increase">+1</button>
  6. </span>
  7. <div class="msg-panel">
  8. <span v-if="showMsg">
  9. hello, world
  10. </span>
  11. <button @click="toggleShowCondition">{{showWhenOdd ? '奇数展示' : '偶数展示'}}</button>
  12. </div>
  13. </div>
  14. </template>
  15. <script>
  16. import {ref, onMounted, computed} from 'vue';
  17. const useCounter = () => {
  18. // counter逻辑
  19. const counter = ref(0);
  20. const increase = () => {
  21. counter.value++;
  22. };
  23. onMounted(() => {
  24. counter.value = Math.floor(Math.random() * 9) + 1;
  25. });
  26. return {
  27. counter,
  28. increase
  29. };
  30. };
  31. const useMsg = counter => {
  32. const showWhenOdd = ref(true);
  33. const showMsg = computed(() => {
  34. return counter.value % 2 === 0
  35. ? showWhenOdd.value
  36. : !showWhenOdd.value;
  37. });
  38. const toggleShowCondition = () => {
  39. showWhenOdd.value = !showWhenOdd.value;
  40. };
  41. return {
  42. showWhenOdd,
  43. showMsg,
  44. toggleShowCondition
  45. };
  46. };
  47. export default {
  48. setup() {
  49. const {counter, increase} = useCounter();
  50. const {showWhenOdd, showMsg, toggleShowCondition} = useMsg(counter);
  51. return {
  52. counter,
  53. increase,
  54. showWhenOdd,
  55. showMsg,
  56. toggleShowCondition
  57. };
  58. }
  59. };
  60. </script>
  61. <style scoped>
  62. #app {
  63. text-align: center;
  64. margin-top: 60px;
  65. }
  66. .counter {
  67. width: 100px;
  68. height: 100px;
  69. border: 1px solid;
  70. padding: 10px;
  71. }
  72. .msg-panel {
  73. width: 100px;
  74. height: 100px;
  75. margin: 50px auto;
  76. border: 1px solid;
  77. padding: 10px;
  78. }
  79. </style>

通过上面示例可以看到,我们将不同的功能模块封装在函数中,并将关键数据和方法返回,然后在Vue组件的setup方法中引用并返回,就可以在模板中使用了。

除了上述的几个关键API:setup/ref/computed/onMounted,还有toRef用于解构props中的属性,watch用于监听数据,代替Vue组件中的watch属性。可以在官方文档查看用法。