- Up to 50 high-quality Components.
- Internationalization Support for Dozens of Languages.
- Develop with TypeScript
- Supports Vue.js 3.x
- Supports SSR
- Supports Nuxt.js
- Supports Electron
npm install kui-vue --savenpm add kui-vueyarn add kui-vuebun add kui-vueUsing a script tag for global use:
<!-- import stylesheet -->
<link rel="stylesheet" href="//unpkg.com/kui-vue/style/index.css" />
<!-- import kui -->
<script src="//unpkg.com/kui-vue"></script><template>
<div>
<k-button type="primary" @click="test">Primary</k-button>
</div>
</template>
<script setup lang="ts">
import { message } from "kui-vue";
const test = () => {
message.info("Hello kui !");
};
</script>git clone git@github.com:smallerqiu/kui-vue.git
cd kui-vue
pnpm install
pnpm devThe documentation development server runs at http://localhost:7005 by default.
Common commands:
pnpm dev # Start the documentation development server
pnpm typecheck # Run TypeScript checks
pnpm build:docs # Build the documentation site
pnpm build # Build the component library and stylesKUI Vue supports the latest two versions of major modern browsers, including Chrome, Edge, Firefox, and Safari. Internet Explorer is not supported.
Issues and pull requests are welcome. Before submitting code, please ensure that the type checks and relevant builds pass.
Copyright © 2017-present Qiu
