Skip to content

Vue3 监听 Prop 变化

Published: at 09:28 AMSuggest Changes
<sctipt>
    import { watch,defineProps } from 'vue';
    const props = defineProps({
        bool: {
            type: Boolean,
            required: true
        }
    })
    
    watch(
        () => props.bool,
        (newValue,oldValue) => {
            console.log(newValue,oldValue)
        }
    )
</script>

参考文章


Previous Post
CentOS 7 Python 安装教程
Next Post
Element 级联菜单城市选择组件优化