如何检查是否明确传递VUE3组件道具?

发布于 2025-01-21 13:15:47 字数 720 浏览 0 评论 0原文

我正在尝试通过VUE3中组件内的属性传递函数。这是代码:

// ExampleComponent.vue

<template>
    Here goes component content...
</template>

<script>
export default {
    name: ''
}
</script>

<script setup>
import { onMounted } from "vue"

const props = defineProps({
    onLoad: {
        type: Function,
        default() {
            return {}
        }
    }
})

onMounted(() => {
    if (props.onLoad) { // This doesn't work and passes every time
        props.onLoad()
    }
})
</script>

这是parent call call Child templecomponent.vue。它可能会或可能不会传递Onload功能。

<ExampleComponent \>

我想要的是,只有在传递属性的属性运算时才称之为此功能? VUE3中有没有办法检查属性是否明确传递?

I am trying to pass a function as property inside a component in Vue3. Here is the code:

// ExampleComponent.vue

<template>
    Here goes component content...
</template>

<script>
export default {
    name: ''
}
</script>

<script setup>
import { onMounted } from "vue"

const props = defineProps({
    onLoad: {
        type: Function,
        default() {
            return {}
        }
    }
})

onMounted(() => {
    if (props.onLoad) { // This doesn't work and passes every time
        props.onLoad()
    }
})
</script>

Here is the parent component calling child ExampleComponent.vue. It may or may not pass the onLoad function.

<ExampleComponent \>

What I want is that call this function only if the property on-load is passed? Is there a way in Vue3 to check if the property is passed explicitly?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小伙你站住 2025-01-28 13:15:47

您可以使用Watcheffect:

JavaScript

watchEffect(() => {
  if(props.onLoad) props.onLoad()
});

一旦“'on Load”'的值更改,它将tigger。

you can use watcheffect :

javascript

watchEffect(() => {
  if(props.onLoad) props.onLoad()
});

once '''onLoad''' value changed, it will tigger.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文