react & vue & angular

vue3 API概览

2023-02-21  本文已影响0人  海豚先生的博客

setup函数

ref

refs

shallowRef

reactive

shallReactive

toRefs

toRef

readonly

shallowReadonly

toRow

markRow

computed函数

watch函数

watchEffect

provide函数

inject函数

响应性数据的判断

生命周期

组件

获取dom

<input ref = inputDom />
const inputDom = ref(null);
onMounted(() => {
  nextTick(() => {
    inputDom.value.focus()
  })
})

自定义hook函数

customRef

上一篇 下一篇

猜你喜欢

热点阅读