q-inline-edit-table component
npm install quasar-ui-inline-edit-table

Compatible with Quasar UI v2 and Vue 3.
Install the App Extension.
OR:
Create and register a boot file:
``js
import Vue from 'vue'
import Plugin from 'quasar-ui-inline-edit-table'
import 'quasar-ui-inline-edit-table/dist/index.css'
Vue.use(Plugin)
`
OR:
`html
`
`js
import Vue from 'vue'
import Plugin from 'quasar-ui-inline-edit-table'
import 'quasar-ui-inline-edit-table/dist/index.css'
Vue.use(Plugin)
`
OR:
`html
`
Exports window.qInlineTable.
Add the following tag(s) after the Quasar ones:
`html`
`
If you need the RTL variant of the CSS, then go for the following (instead of the above stylesheet link):html`
bash
$ yarn
`Developing
`bash
start dev in SPA mode
$ yarn devstart dev in UMD mode
$ yarn dev:umdstart dev in SSR mode
$ yarn dev:ssrstart dev in Cordova iOS mode
$ yarn dev:iosstart dev in Cordova Android mode
$ yarn dev:androidstart dev in Electron mode
$ yarn dev:electron
`Building package
`bash
$ yarn build
`Adding Testing Components
in the ui/dev/src/pages you can add Vue files to test your component/directive. When using yarn dev to build the UI, any pages in that location will automatically be picked up by dynamic routing and added to the test page.Adding Assets
If you have a component that has assets, like language or icon-sets, you will need to provide these for UMD. In the ui/build/script.javascript.js file, you will find a couple of commented out commands that call addAssets. Uncomment what you need and add your assets to have them be built and put into the ui/dist` folder.