Skip to content

Commit

Permalink
fix(Table): select all rows without select listener (#652)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sma11X committed Sep 12, 2023
1 parent 1b34df1 commit 83d609d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/runtime/components/data/Table.vue
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,8 @@ export default defineComponent({
return
}
onSelect(row)
// @ts-ignore
attrs.onSelect ? attrs.onSelect(row) : selected.value.push(row)
})
}
Expand Down

1 comment on commit 83d609d

@vercel
Copy link

@vercel vercel bot commented on 83d609d Sep 12, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

ui – ./

ui-nuxt-js.vercel.app
ui-git-dev-nuxt-js.vercel.app
ui.nuxt.com

Please sign in to comment.