czz-vue3-ui
v1.0.0
Published
Vue3组件库,beta版本仅用来测试发布
Downloads
3
Readme
Vue3UI
基于Vue3, ts 组件库。
按钮 - Button
基本用法
::: demo 使用type、plain、circle等属性来设置样式
<template>
<div>
<UButton>默认按钮</UButton>
<UButton type="primary">主要按钮</UButton>
<UButton type="success">成功按钮</UButton>
<UButton type="info">信息按钮</UButton>
<UButton type="warning">警告按钮</UButton>
<UButton type="danger">危险按钮</UButton>
</div>
</template>:::
Button Attributes
| Name | Description | Type | Default |
| --- | --- | --- | --- |
| size | button size | 'large'\| 'default'\| 'small' | — |
| type | button type | 'primary'\| 'success'\| 'warning'\| 'danger'\| 'info'\ | — |
