@frollo/frollo-web-ui
v8.0.1
Published
Frollo's UI library for components, utilities and configs
Downloads
104
Maintainers
Readme
Frollo Web UI
Usage
Installation
npm i @frollo/frollo-web-ui
or
yarn add @frollo/frollo-web-ui
Import entire library globally
import { createApp } from 'vue'
import App from './App.vue'
import FrolloWebUI from '@frollo/frollo-web-ui';
const app = createApp(App)
app.use(FrolloWebUI)
app.mount('#app')
Import components from the esm folder to enable tree-shaking
import { FwCard } from '@frollo/frollo-web-ui/esm';
Note: For local development please refer to the general development readme.