# Lancet **Repository Path**: mirrors_LancerComet/Lancet ## Basic Information - **Project Name**: Lancet - **Description**: A little tiny Vue 3 UI component library. - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-10-27 - **Last Updated**: 2026-01-03 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## 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`.