go18/devcloud/web/src/pages/HomePage.vue
2025-08-03 15:32:52 +08:00

18 lines
360 B
Vue

<template>
<div>
<a-space>
<a-button type="primary">Primary</a-button>
<a-button>Secondary</a-button>
<a-button type="dashed">Dashed</a-button>
<a-button type="outline">Outline</a-button>
<a-button type="text">Text</a-button>
</a-space>
</div>
</template>
<script setup>
</script>
<style lang="css" scoped></style>