Welcome to Aurora-Vue!
Aurora-Vue is UI - Library write in Vue.js that will assist you in your project, providing visual components to facilitate the development of your application.
Installation
Attemption this lib is for Vue 2.*!
# If you use npm:
npm i @hyone-labs/aurora-vue
# Or if you use Yarn:
yarn add @hyone-labs/aurora-vue
Use
After installing, to use Aurora Vue, you will need to import the desired components to use them.
- In Vue script:
import { AButton } from '@hyone-labs/aurora-vue';
export default {
components: { AButton }
};
- In template:
<template>
<AButton>Foi</AButton>
</template>