# linview **Repository Path**: lsfcxz/linview ## Basic Information - **Project Name**: linview - **Description**: 一个基于Vue开发的UI组件库 - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: https://lsfcxz.github.io/linview - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2021-10-04 - **Last Updated**: 2021-10-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: UI, Vue2UI ## README # linview UI组件库 官方文档:https://lsfcxz.github.io/linview ### 快速开始 1. #### 安装组件库 ```shell npm i linview ``` 2. #### 引用组件库 ```js //引入全部 import 'linview/lib/lview/index.css'; import lview from 'linview'; Vue.use(lview) //按需引入 import 'linview/lib/lview/card.css' import Card from 'linview/lib/card'; Vue.use(Card) ```