go18/devcloud/web/src/pages/HomePage.vue

18 lines
360 B
Vue
Raw Normal View History

2025-08-03 12:07:18 +08:00
<template>
<div>
2025-08-03 15:32:52 +08:00
<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>
2025-08-03 12:07:18 +08:00
</div>
</template>
<script setup>
</script>
<style lang="css" scoped></style>