Vue 3: 如何在组件函数中获取和修改设置的变量
P粉463840170
2023-08-24 19:32:40
<p>考虑以下使用Vue 3中的组合API的简单示例。我想在组件的函数中使用<code>test</code>的实例。</p>
<pre class="brush:php;toolbar:false;"><script>
import { defineComponent, ref, onMounted } from 'vue'
export default defineComponent({
name: 'Test',
setup(){
let test = ref()
onMounted(() => {
doSomething()
})
return{
test,
doSomething
}
}
})
function doSomething(){
console.log(test) //<-- undefined
console.log(this.test) //<-- undefined
}
</script></pre>
<p>如何在<code>doSomething()</code>内部访问<code>test</code>?我的理解是<code>setup()</code>返回的任何内容应该在整个组件中都可用,就像选项API中的<code>data()</code>属性一样。</p>
你必须将
ref
作为参数传递另一种方法: