@hyone/core-ui
v1.43.0
Published
Core UI - Library write for Vue 3
Downloads
10
Readme
Core 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/core-ui
# Or if you use Yarn:
yarn add @hyone/core-ui
Use
After installing, add CoreUI to your vue instance.
- In main js:
import { createApp } from 'vue';
import { CoreUI } from '@hyone/core-ui';
import App from './app.vue';
createApp
.use(CoreUI)
.mount('#root');
- In template:
<template>
<h-button>My button</h-button>
</template>