0.0.10 • Published 2 years ago

cxz-ui v0.0.10

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years 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

2 years ago

0.0.9

2 years ago

0.0.8

2 years ago

0.0.7

2 years ago

0.0.6

2 years ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago