美文网首页
vue3 常用watch及defineExpose

vue3 常用watch及defineExpose

作者: Gifted_ | 来源:发表于2022-06-30 17:28 被阅读0次

vue3 watch监听的两张方法

watch(
  () => props.props的值,
  (newValue,oldValue) => {
    //执行
  }
)
watch(页面声明的值, (newValue,oldValue) => {
 //执行
})

vue3 父组件调用子组件实例

//抛出实例让父组件使用
defineExpose({
  子组件声明的变量或者方法名
})

相关文章

网友评论

      本文标题:vue3 常用watch及defineExpose

      本文链接:https://www.haomeiwen.com/subject/drzfbrtx.html