Component QGrid
Compatible with Quasar UI v2 and Vue 3.
Component QGrid
Short description of the component
Usage
Quasar CLI project
Install the App Extension.
OR:
Create and register a boot file:
import Vue from 'vue'
import Plugin from 'quasar-ui-qgrid'
Vue.use(Plugin)
OR:
<script>
import QGrid from 'quasar-ui-qgrid/src/components/QGrid.vue'
export default {
components: {
QGrid
}
}
</script>
Vue CLI project
import Vue from 'vue'
import Plugin from 'quasar-ui-qgrid'
Vue.use(Plugin)
OR:
<script>
import { Component as QGrid } from 'quasar-ui-qgrid'
export default {
components: {
QGrid
}
}
</script>
UMD variant
Exports window.QGrid
.
Add the following tag(s) after the Quasar ones:
<body>
<script src="https://cdn.jsdelivr.net/npm/quasar-ui-qgrid/dist/index.umd.min.js"></script>
</body>
Setup
$ yarn
Developing
$ yarn dev
$ yarn dev:umd
$ yarn dev:ssr
$ yarn dev:ios
$ yarn dev:android
$ yarn dev:electron
Building package
$ 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.
Donate
If this helped you in any way, you can contribute to this project for long term survival by supporting me:
Be sure to check out my sponsor page.
Thank you so much!!!
License
MIT (c) pratikpatelpp802@gmail.com