Skip to content

GHkmmm/oreo-ui

Repository files navigation

logo

OreoUI

基于Vue3.0+TypeScript构建的UI组件库

🔥 官方文档     🚀 npm

安装

打开终端运行下列命令:

npm install oreo-neuui

yarn add oreo-neuui

开始使用

请先安装本组件库

然后在你的代码中写入下面的代码

import { OrButton, OrTabs, OrSwitch, OrDialog, openDialog } from "oreo-neuui"

就可以使用我提供的组件了

Vue 单文件组件

代码示例

<template>
  <div>
    <or-button>按钮</or-button>
  </div>
</template>

<script>
import { OrButton, OrTabs, OrSwitch, OrDialog, openDialog } from "oreo-neuui"

export default {
  components: {OrButton}
}

</script>

详细使用教程请查看官方文档