Quasar
Step 1 - install package
bash
npm install @nova-org/components @nova-org/icons @oku-ui/motionStep 2 - import styles
In your quasar.config.js add ~@nova-org/components/style.css to CSS config.
typescript
module.exports = configure(function (/* ctx */) {
return {
// ...
css: [
// ...
'~@nova-org/components/style.css',
],
// ...
}
})Step 3 - example usage
Everything is set-up, you are ready to use all available components and transitions from Nova library.
vue
<script setup lang="ts">
import {NButton} from '@nova-org/components'
</script>vue
<template>
<n-button label="Button"/>
</template>