coriander-ui
v0.0.7
Published
详细内容请移步:[官方文档](https://evalllll.github.io/corianderUI-website/index.html#/)
Readme
香菜 UI
详细内容请移步:官方文档
介绍
香菜 UI 是一款基于 Vue3 和 TypeScript 开发的 UI 组件库。
这款组件库其实是我为了学习 Vue3 和 TypeScript 而写的。
不建议您使用本库来进行生产,但是可以用来学习交流。
目前已有组件有(未来会添加更多组件):
安装
yarn
yarn add [email protected]npm
npm install [email protected]快速上手
Vue 单文件代码示例
<template>
<div>
<button>按钮</button>
</div>
</template>
<script>
import { Button, Tabs, Switch, Dialog } from "coriander-ui";
import "coriander-ui/dist/lib/coriander.esm.css";
export default {
components: { Button },
};
</script>