mick-xu / rapid-ui-vue

Rapid UI is a Vue 3.0 component library used to create website user interface quickly

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Rapid UI

快速创建响应式网站的 UI 库,适用于企业站、商城、论坛、博客等互联网 Web 项目,支持移动端

安装

npm install rapid-ui-vue --save (0.0.8 之前版本)

npm install rapid-vui --save (0.0.8 之后版本)
yarn add rapid-ui-vue (0.0.8 之前版本)

yarn add rapid-vui (0.0.8 之后版本)

演示

演示地址

示例

打开 main.js 文件

import { createApp } from "vue";
import App from "./App.vue";
import RapidUI from "rapid-vui";
import 'rapid-vui/lib/rapid-ui.css' // 引入样式

createApp(App)
  .use(RapidUI)
  .mount("#app");

About

Rapid UI is a Vue 3.0 component library used to create website user interface quickly

License:MIT License


Languages

Language:Less 52.7%Language:Vue 23.7%Language:CSS 18.4%Language:JavaScript 4.9%Language:HTML 0.4%