# markm-ui
**Repository Path**: open_vue/markm-ui
## Basic Information
- **Project Name**: markm-ui
- **Description**: vue3.0搭建UI组件库
- **Primary Language**: JavaScript
- **License**: MIT
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 3
- **Forks**: 0
- **Created**: 2022-04-04
- **Last Updated**: 2022-10-24
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
## Markm-Ui
### Document
- [中文文档](http://test.mameihua.top/)
- [更新日志](./FAQ.md)
- [vue3项目搭建](https://mp.weixin.qq.com/s/MIR_bVtiL2JuvdV_ij89UA)
### Install
```bash
npm i markm-ui -S
```
### Quick Start
- Global
```javascript
import { createApp } from "vue";
import MarkmUi from 'markm-ui';
import "markm-ui/dist/markm-ui.css";
const app = createApp(App)
app.use(MarkmUi);
app.mount('#app')
```
- On demand
```javascript
import { createApp } from "vue";
import { Button, Switch } from 'markm-ui';
const app = createApp(App);
app.use(Button).use(Switch);
app.mount('#app');
```
### Organization
Welcome to discuss with the author face to face, experience the infrastructure and development of the component library, put forward requirements and joint maintenance! Looking forward to your joining us