linmasahiro / vue3-table-lite

A simple and lightweight data table component for Vue.js 3. Features sorting, paging, row check, dynamic data rendering, supported TypeScript, and more.
https://vue3-lite-table.vercel.app/
MIT License
248 stars 73 forks source link

Typing emit functions #112

Closed matheusjv11 closed 7 months ago

matheusjv11 commented 7 months ago

To better type the emit functions outside the components, a typing workaround was added to the emits as the defineEmits cannot be used with the Options API. I had to disable eslint on those definitions to prevent throwing warnings for unused variables.

New snippet with the event type: image

Let me know if there is something to change.