-
Notifications
You must be signed in to change notification settings - Fork 148
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Question] Help 如何通过defineComponent(function xxxx(props) {}} 方式获取props传参 #553
Comments
@GamesSoul here is exapmle of component with props that you can take a look. |
thanks |
@zanllp no need to define |
|
@zanllp you right. But typings are used incorrectly. |
函数式组件你就别用reactive或者ref了,它自身没有任何状态,也没常规的生命周期。这点和react的不一样 |
这样的话缺点就很明显了 如果我把用的某个ui框架的table封装一层的话光是table的props传参都能把人搞吐血 |
如果是想要一次性传很多参数 可以参考这个 #217 |
这种写法没办法控制props接收哪些参数, 在目前的jsx里的setup函数中如果没有在实例上配置props接收哪些参数就没办法作用到指定的功能,我在项目中尝试把element-plus的table封装了一层 后面发现封装的代价太大了 |
🧐 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
}} )
The text was updated successfully, but these errors were encountered: