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
在写东西的时候找参照代码发现的,具体在/views/system/user/index.vue第127行,原代码为:
/views/system/user/index.vue
<el-popconfirm title="是否确认删除?"> <template #reference> <el-button class="reset-margin" link type="primary" :size="size" :icon="useRenderIcon(Delete)" @click="handleDelete(row)" > 删除 </el-button> </template> </el-popconfirm>
实际上应该是
<el-popconfirm title="是否确认删除?" @confirm="handleDelete(row)"> <template #reference> <el-button class="reset-margin" link type="primary" :size="size" :icon="useRenderIcon(Delete)" > 删除 </el-button> </template> </el-popconfirm>
其它类似的地方同理,比如角色管理那里
The text was updated successfully, but these errors were encountered:
正在重构中 #428
Sorry, something went wrong.
No branches or pull requests
在写东西的时候找参照代码发现的,具体在
/views/system/user/index.vue
第127行,原代码为:实际上应该是
其它类似的地方同理,比如角色管理那里
The text was updated successfully, but these errors were encountered: