@hyone/hyone-ui
v1.17.0
Published
HyONE UI - Library write for Vue 3
Downloads
2
Readme
HyONE-UI - Library write in Vue 3 that will assist you in your project, providing visual components to facilitate the development of your application.
Installation
# If you use npm:
npm i @hyone/hyone-ui
# Or if you use Yarn:
yarn add @hyone/hyone-ui
Use
After installing, add HyONEPlugin to your vue instance.
- In main js:
import { createApp } from 'vue';
import '@hyone/hyone-ui/dist/hyone-ui.css';
import { HyONEPlugin } from '@hyone/hyone-ui';
import App from './app.vue'
createApp
.use(HyONEPlugin)
.mount('#root');
- In template:
<template>
<AButton>Foi</AButton>
</template>