如题,定义一个组件,设置 props 如下: interface Props { decorateConfig: { 'src'?: string }, width?: number, height?: number } const props = withDefaults(defineProps(), { decorateConfig: () => { return { src: '' } } }) 当我直接定义 const src = props.decorateConfig.src 的时候,会提示这样会失去响应性 Getting a value from the `props` in root scope of `` will cause the value to lose reactivity. 所以想问下,如何可以将这样的定义,转为响应性