You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm a little bit confused where this should be handles.
Comming from vuetify-tsx, we have <VDataTable> and the pagination object.
There are some attributes: pagination or pagination.sync introduced by vuetify.
Because jsx/tsx dont support attributes like pagination.sync we have to write pagination_sync but this behaves in another way as pagination.sync :(
To create the exact same behaviour like pagination.sync we need to write
I'm a little bit confused where this should be handles.
Comming from vuetify-tsx, we have
<VDataTable>
and the pagination object.There are some attributes:
pagination
orpagination.sync
introduced by vuetify.Because jsx/tsx dont support attributes like
pagination.sync
we have to writepagination_sync
but this behaves in another way aspagination.sync
:(To create the exact same behaviour like
pagination.sync
we need to writeExample can be found here: https://github.com/chanlito/vuetify-tsx/blob/master/src/views/examples/DataTables.tsx
The text was updated successfully, but these errors were encountered: