vue3-lcui
v1.1.14
Published
vue3-lcui components based on Vite and Vue3
Downloads
51
Maintainers
Readme
简介
快速开始
安装
# NPM
$ npm install vue3-lcui --save
# Yarn
$ yarn add vue3-lcui
# pnpm
$ pnpm install vue3-lcui
完整引入
import { createApp } from 'vue';
import './style.css';
import App from './App.vue';
import lcui from 'vue3-lcui';
import 'vue3-lcui/style.css';
createApp(App).use(lcui).mount('#app');