Vuejs 3 API 文档

Vuejs 3 API documentation

我有兴趣深入了解 Vue.js v3,甚至在它发布之前。某处是否有 (WIP) API 文档?喜欢这个:

https://vuejs.org/v2/api/

我能找到的只有一些文章和半官方出版物。试过 repository,但是没有名为 dev 之类的分支。

我知道它仍在进行中,但是仍然没有内部保存的文档吗?

这里有一个 RFC:https://github.com/vuejs/rfcs/blob/function-apis/active-rfcs/0000-function-api.md

您还可以在 youtube 上查看 Erik 的 video

自 2020 年 7 月起您可以通过此 link v3.vuejs.org[ 找到 Vue 3 的官方文档=13=]


您可以查看 composition api official doc, this article from vuedose.tips, this playlist from Vue mastery youtube channel or this youtube video

还有一个显示 api 外观的基本示例:

<template>
  <button @click="increment">
    Count is: {{ state.count }}, double is: {{ state.double }}
  </button>
</template>

<script>
import { reactive, computed } from 'vue'

export default {
  setup() {
    const state = reactive({
      count: 0,
      double: computed(() => state.count * 2)
    })

    function increment() {
      state.count++
    }

    return {
      state,
      increment
    }
  }
}
</script>

Vue3 文档无法通过谷歌搜索,位于 https://v3.vuejs.org/