/bailu-ui

A comprehensive Vue UI components library based on the 白露UI

Primary LanguageSCSSMIT LicenseMIT

A comprehensive Vue UI components library based on the BaiLuUI

license

English | 简体中文

Docs

docs

Installation

Available as an npm package

// with npm
npm install bailu-ui

// with yarn
yarn add bailu-ui

// with pnpm
pnpm add bailu-ui

Examples

import { createApp } from 'vue'
import BaiLuUI from 'bailu-ui';
import App from './App.vue';
import 'bailu-ui/css';

const app = createApp(App);
app.use(BaiLuUI);
app.mount('#app');