0.0.10 • Published 11 months ago

cxz-ui v0.0.10

Weekly downloads
-
License
MIT
Repository
github
Last release
11 months ago

cxz-ui

基于 Element Plus 组件库二次封装

准备工作

项目中需要先安装Vue3Element Plus

安装

pnpm i cxz-ui

使用

  • 在入口文件中导入样式
import 'cxz-ui/es/style.css'
  • 使用组件
<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>
0.0.10

11 months ago

0.0.9

11 months ago

0.0.8

11 months ago

0.0.7

11 months ago

0.0.6

11 months ago

0.0.5

11 months ago

0.0.4

11 months ago

0.0.3

11 months ago

0.0.2

11 months ago

0.0.1

11 months ago