### 🧐 Problem Description 如果直接通过 defineComponent(function xxxx(props) {}} ) 里获取props的话 会拿不到props里的数据 通过 在 函数内使用 defineProps 也是拿不到对应的值 包括通过使用toRef 和 toRefs 也拿不到 必须要通过才能拿到 有什么更简洁的方式么 defineComponent({ props: ['xxx'] setup (props) { return () => props.xxx } }) ### 💻 Sample code defineComponent(function xxxx(props) { return () => props.xxx // undefined }} )