feat: add button

This commit is contained in:
2023-03-27 07:51:19 +08:00
parent 2b2ef3a3fb
commit 3ba0d997d5
8 changed files with 265 additions and 22 deletions

View File

@ -10,9 +10,15 @@ title: 基础按钮
<script lang="ts" setup></script>
<template>
<div>
<div style="display: flex; gap: 10px; padding-bottom: 10px">
<a-button>这是按钮</a-button>
<div style="height: 10px"></div>
<a-button type="primary">这是按钮</a-button>
<a-button
type="primary"
danger
>
这是按钮
</a-button>
</div>
</template>