mirror of
https://github.com/antd-tiny-vue/antd-tiny-vue.git
synced 2024-11-10 17:49:18 +08:00
20 lines
254 B
Vue
20 lines
254 B
Vue
<docs>
|
|
---
|
|
title: 基础按钮
|
|
---
|
|
|
|
这是一个Button的基础按钮
|
|
|
|
</docs>
|
|
|
|
<script lang="ts" setup></script>
|
|
|
|
<template>
|
|
<div>
|
|
<a-button>这是按钮</a-button>
|
|
<div style="height: 10px"></div>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped></style>
|