# coderjc-ui **Repository Path**: qwer-li/coderjc-ui ## Basic Information - **Project Name**: coderjc-ui - **Description**: 这是一个关于 Vue3 的组件库 - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2024-06-15 - **Last Updated**: 2024-06-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Coderjc UI > 目前处于开发阶段,有任何问题或者建议都可以提出 Issue,感谢您的参与! 具体说明请查看文档 Coderjc UI ## 安装 ```bash npm install coderjc-ui ``` ## 引入 ```js // main.ts / main.js import { createApp } from 'vue' import App from './App.vue' import 'coderjc-ui/dist/index.css' import CoderjcUI from 'coderjc-ui' const app = createApp(App) app.use(CoderjcUI) app.mount('#app') ```