Skip to content
On this page

快速开始

准备工作

项目中需要先安装Vue3Element Plus

安装

bash
pnpm i cxz-ui

使用

  • 在入口文件中导入样式
js
import 'cxz-ui/es/style.css'
  • 使用组件
vue
<template>
  <CxzButton type="primary" :debounceWait="2000" @click="handleClick">
    防抖按钮
  </CxzButton>
  <div>点击{{ count }}次</div>
</template>

<script setup lang="ts">
import { CxzButton } from 'cxz-ui'
import { ref } from 'vue'

const count = ref(0)

const handleClick = () => {
  count.value++
}
</script>

Released under the MIT License.