We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
<ProTable ref="proTable" title="菜单列表" row-key="path" :indent="20" :columns="columns" :data="menuData"> <!-- 表格 header 按钮 --> <template #tableHeader> <el-button type="primary" :icon="CirclePlus" @click="handlerAdd">新增菜单</el-button> </template> <!-- 菜单图标 --> <template #icon="scope"> <el-icon :size="18"> <component :is="scope.row.meta.icon"></component> </el-icon> </template> <!-- 菜单操作 --> <template #operation> <el-button type="primary" link :icon="EditPen" @click="handlerEdit"> 编辑 </el-button> <el-button type="primary" link :icon="Delete"> 删除 </el-button> </template> </ProTable>
scope的类型提示为any
The text was updated successfully, but these errors were encountered:
No branches or pull requests
scope的类型提示为any
The text was updated successfully, but these errors were encountered: