-
-
Notifications
You must be signed in to change notification settings - Fork 3.8k
可伸缩列 table 参数名称冲突 #1870
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
Comments
? |
1.4.11 版本 新增可拖拽调整表格列宽示例 示例代码有误 |
有啥误 没看出来 |
ResizeableTitle 函数一执行 return 模板语法 就报错,是缺少依赖解析不了吗 |
不是,好像只是参数重复的错误 |
https://codesandbox.io/s/competent-wildflower-ghr24?file=/src/App.vue h参数是不能去掉的 |
This issue is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 7 days |
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Version
1.4.11
Environment
Table Resizable column
Reproduction link
Steps to reproduce
/* const ResizeableTitle = (h, props, children) => { */
const ResizeableTitle = (h1) => {
const props = h1.props
const children = h1.children
}
What is expected?
const ResizeableTitle = (h1) => {
const props = h1.props
const children = h1.children
}
What is actually happening?
const ResizeableTitle = (h, props, children) => {
}
Argument name clash
The text was updated successfully, but these errors were encountered: