No Preview

Sorry, but you either have no stories or none are selected somehow.

If the problem persists, check the browser console, or the terminal you've run Storybook from.

Welcome to Core UI

Core UI - Library write in Vue 3 that will assist you in your project, providing visual components to facilitate the development of your application.

Netlify Status

Installation

# If you use npm: 
npm i @hyone/core-ui
# Or if you use Yarn: 
yarn add @hyone/core-ui

Use

After installing, add HyONEPlugin to your vue instance.

  • In main js:
import { createApp } from 'vue';
import HyOneCoreUI from '@hyone/core-ui';
import App from './app.vue'

createApp
  .use(HyOneCoreUI)
  .mount('#root');
  • In template:
<template>
  <HButton>Foi</HButton>
</template>

Documentation

Core UI Doc

Contributing

Guides: Click here, and discovery how to develop