mirror of
https://github.com/antd-tiny-vue/antd-tiny-vue.git
synced 2025-03-15 07:04:33 +08:00
26 lines
414 B
Vue
26 lines
414 B
Vue
<docs>
|
|
---
|
|
title: 基础按钮
|
|
---
|
|
|
|
这是一个Button的基础按钮
|
|
|
|
</docs>
|
|
|
|
<script lang="ts" setup></script>
|
|
|
|
<template>
|
|
<div style="display: flex; gap: 10px; padding-bottom: 10px">
|
|
<a-button>这是按钮</a-button>
|
|
<a-button type="primary">这是按钮</a-button>
|
|
<a-button
|
|
type="primary"
|
|
danger
|
|
>
|
|
这是按钮
|
|
</a-button>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped></style>
|