gpt4 book ai didi

javascript - Vuejs 3 API 文档

转载 作者:行者123 更新时间:2023-11-29 10:26:41 24 4
gpt4 key购买 nike

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

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

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

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

最佳答案

自 2020 年 7 月起您可以通过此链接找到 Vue 3 的官方文档 v3.vuejs.org


您可以检查 composition api official doc , 这个article来自 vuedose.tips , 这个playlist来自 Vue mastery youtube channel 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>

关于javascript - Vuejs 3 API 文档,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57372842/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com