Experiment UI - Library write in Vue 3 that will assist you in your project, providing visual components to facilitate the development of your application.
# If you use npm:
npm i experiment-ui
# Or if you use Yarn:
yarn add experiment-ui
# Or if you use pnpm:
pnpm add experiment-ui
After installing, add ExperimentUI to your vue instance.
- In main js/ts:
import { createApp } from 'vue';
import { ExperimentUI } from 'experiment-ui';
import App from './app.vue';
createApp
.use(ExperimentUI)
.mount('#root');
- In template:
<template>
<h-button>My button</h-button>
</template>