当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Vue.js triggerRef()用法及代码示例


强制依赖于 shallow ref 的触发效果。这通常在对浅层参考的内部值进行深度突变后使用。

类型

function triggerRef(ref: ShallowRef): void

示例

const shallow = shallowRef({
  greet: 'Hello, world'
})

// Logs "Hello, world" once for the first run-through
watchEffect(() => {
  console.log(shallow.value.greet)
})

// This won't trigger the effect because the ref is shallow
shallow.value.greet = 'Hello, universe'

// Logs "Hello, universe"
triggerRef(shallow)

相关用法


注:本文由纯净天空筛选整理自vuejs.org大神的英文原创作品 triggerRef()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。