Vite
Step 1 - install package
bash
npm install @nova-org/components @nova-org/icons @oku-ui/motionStep 2 - import styles
typescript
import '@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>