This guide is for when you want to create a new UI component and provide it through an App Extension, which will inject it into the hosting app.
TIP
In order for creating an App Extension project folder, please first read the Development Guide > Introduction.
Full Example
To see an example of what we will build, head over to MyComponent full example, which is a GitHub repo with this App Extension.
Create a folder structure to keep your code modularized and organized. For instance, for a UI component, create a structure that looks like this:
Now, you need to handle registering your component. You do this with the /index.js
file (described in the Index API) that was created when you set up your new App Extension.
Let’s break it down.
export default function (api) {
// (Optional!)
// Quasar compatibility check; you may need
// hard dependencies, as in a minimum version of the "quasar"
// package or a minimum version of Quasar App CLI
api.compatibleWith('quasar', '^2.0.0')
if (api.hasVite === true) {
api.compatibleWith('@quasar/app-vite', '^2.0.0-beta.1')
}
else { // api.hasWebpack === true
api.compatibleWith('@quasar/app-webpack', '^4.0.0-beta.1')
}
// Here we extend the /quasar.config file, so we can add
// a boot file which registers our new UI component;
// "extendConf" will be defined below (keep reading the tutorial)
api.extendQuasarConf(extendConf)
}
The first group does a compatibility check with Quasar (which is optional, but recommended). If your component is using features of Quasar that were available after a certain version, you can make sure that the version of Quasar installed is the correct one.
TIP
Not only can you do a api.compatibleWith()
to check against Quasar packages, but with any other available packages (that you do not supply yourself through your App Extension) as well. Please read Handling package dependencies section from the App Extension Development Guide > Introduction page for more information.
The second group tells Quasar to call our custom function when the extendQuasarConf
CLI life-cycle hook is called. It would look something like this:
function extendConf (conf, api) {
// make sure my-component boot file is registered
conf.boot.push('~quasar-app-extension-my-component/src/boot/register-my-component.js')
// @quasar/app-vite does not need this
if (api.hasVite !== true) {
// make sure boot & component files get transpiled
conf.build.transpileDependencies.push(/quasar-app-extension-my-component[\\/]src/)
}
// make sure my-component css goes through webpack to avoid ssr issues
conf.css.push('~quasar-app-extension-my-component/src/component/MyComponent.sass')
}
Finally, let’s see how the boot file would look like. Make sure that you read the @quasar/app-vite Boot files / @quasar/app-webpack Boot files documentation and understand what a Boot file is first.
import MyComponent from '../component/MyComponent.vue'
// we globally register our component with Vue
export default ({ app }) => {
app.component('my-component', MyComponent)
}