1.0.5 • Published 1 year ago

@dingdaoos/lucid-vue v1.0.5

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

Lucid UI for Vue3

Lucid UI Components library for Vue 3.


Quick Start

npm install -S @dingdaoos/lucid-vue

import LucidUI from '@dingdaoos/lucid-vue'
Vue.use(LucidUI)

// or 

import { Button, Input } from '@dingdaoos/lucid-vue'
Vue.use(Button)

// Do not forget import css

import '@dingdaoos/lucid-theme/lib/theme-default.css'

For more information, you can visit our documentation site.

Use custom component prefix

The component prefix defaults to lu-, which supports personalized component prefixes

Vue.use(LucidUI, {
  prefix: 'awesome'
})

<awesome-button>Button</awesome-button>