Evercam UI
Description
Components libray for the Evercam frontends.
Installation
1- Install the package
yarn add @evercam/ui
2- Use the components in a Vue app by either:
- Installing the library globally as a Vue plugin:
import Vue from "vue"
import EvercamUI from "@evercam/ui"
Vue.use(EvercamUI)
- Or importing components individually:
<template>
<EBadge text="Hello world" color="success" />
</template>
<script>
import { EBadge } from "@evercam/ui"
export default {
components: {
EBadge,
},
}
</script>
Dev mode
You can preview the components and their stories by running the Histoire sever:
yarn story:dev