自定义 hook 函数

本质是一个函数,把 setup 函数中的组合式 API 进行了封装,类似于 vue2 中的 mixin

  • hook 结构

    import { ref , reactive , onMounted } from 'vue'
    export default function( ) {
      let a = ref( 0 )
      ....
      函数执行体
      用于执行可重复复用的方法
      ....
    
    
      return xxxxx
    }
    
  • 使用 hook

    import xxxx from '../xx/xxx'
    
    ......
    
    //调用 hook 方法,并接收返回值
    let xx = xxxx( )
    
    .......
    
    
上次更新:
贡献者: Roking-wang