[Claude Code] After prompt #1

This commit is contained in:
2025-12-08 11:40:20 +08:00
parent fd02caf921
commit bc1ee71fc1
5 changed files with 35 additions and 3 deletions

View File

@@ -0,0 +1,16 @@
<template>
<button :type="type" :style="style"></button>
</template>
<script setup lang="ts">
interface Props{
type: 'button' | 'submit' | 'reset',
style: string
}
const props = defineProps<Props>()
</script>
<style lang="scss" scoped>
@import url("./button.scss");
</style>

View File

@@ -0,0 +1 @@
export { default as Button } from './button/Button.vue'