mineadmin / MineAdmin-Vue

MineAdmin Vue 是一个开源免费专门适配于 MineAdmin 后台权限管理系统的前端中后台模板,使用了 vue3, vite5, pinia, arco design, javascript 等主流开发技术,未使用Typescript,我们选择了简单。
MIT License
322 stars 104 forks source link

maCrud无法使用arco的表格API:default-selected-keys #181

Closed tiancheng-66 closed 4 months ago

tiancheng-66 commented 4 months ago

`<ma-crud :options="options" :columns="columns" ref="crudRef" @selection-change="handleTableSelect" :default-selected-keys="[1]">

rowSelection: { type: 'radio' }, ` 并不会选中key为1的值,在src/components/ma-crud/index.vue中打印v-bind绑定的$attrs发现值是传过来了的,但是表格未自动选中

image