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.

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 Release - CI

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>

Documentation

Core UI Doc

Contributing

Guides: Click here, and discovery how to develop