An open API service indexing awesome lists of open source software.

https://github.com/lancercomet/lancet

A little tiny Vue 3 UI component library.
https://github.com/lancercomet/lancet

components ui ui-components vue vue-ui-components vue3 vue3-composition-api

Last synced: about 1 year ago
JSON representation

A little tiny Vue 3 UI component library.

Awesome Lists containing this project

README

          

# Lancet

A little tiny Vue 3 UI component library. Still in heavy development.

## Quick start

```tsx
import { defineComponent, createApp } from 'vue'
import { Lancet, LctApp, LctBtn } from 'lancet'

// Lancet uses Material Icons as its iconpack.
import 'material-icons/iconfont/material-icons.css'

const MyApp = defineComponent({
setup () {
return () => (

My Awesome App



Submit


)
}
})

const app = createApp(TestPage)
app.use(Lancet)
app.mount('#app')
```

## Components

Please check `lib/components` folder to see what kind of components we provide.

## Showcase

The showcase code is located in `dev` folder.

Checkout how the components work by launching the project with `npm run dev`.