@vueauth/quasar-ui-auth
v1.0.0-alpha.32
Published
Simple auth integration with the Quasar Framework
Downloads
74
Readme
Component FirebaseRegisterForm
Compatible with Quasar UI v2 and Vue 3.
Component FirebaseRegisterForm
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-firebase'
Vue.use(Plugin)
OR:
<script>
import { Component as FirebaseRegisterForm } from 'quasar-ui-firebase'
export default {
components: {
FirebaseRegisterForm
}
}
</script>
Vue CLI project
import Vue from 'vue'
import Plugin from 'quasar-ui-firebase'
Vue.use(Plugin)
OR:
<script>
import { Component as FirebaseRegisterForm } from 'quasar-ui-firebase'
export default {
components: {
FirebaseRegisterForm
}
}
</script>
UMD variant
Exports window.quasarAuth
.
Add the following tag(s) after the Quasar ones:
<body>
<!-- at end of body, AFTER Quasar script(s): -->
<script src="https://cdn.jsdelivr.net/npm/quasar-ui-firebase/dist/index.umd.min.js"></script>
</body>
Setup
$ pnpm
Developing
# start dev in SPA mode
$ pnpm dev
# start dev in UMD mode
$ pnpm dev:umd
# start dev in SSR mode
$ pnpm dev:ssr
# start dev in Cordova iOS mode
$ pnpm dev:ios
# start dev in Cordova Android mode
$ pnpm dev:android
# start dev in Electron mode
$ pnpm dev:electron
Building package
$ pnpm build
Adding Testing Components
in the ui/dev/src/pages
you can add Vue files to test your component/directive. When using pnpm 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 you appreciate the work that went into this, please consider donating to Quasar.
License
MIT (c) [email protected]