fixing adn docing

This commit is contained in:
skytek_xinliang
2026-06-01 14:44:39 +08:00
parent 7b0cfe4448
commit f61432ad8a
17 changed files with 25 additions and 41 deletions
@@ -1,7 +1,6 @@
<script setup lang="ts">
interface Props {
title: string
backLabel?: string
error?: string
loading?: boolean
message?: string
@@ -10,7 +9,6 @@ interface Props {
}
withDefaults(defineProps<Props>(), {
backLabel: '返回',
resetLabel: '清除',
submitLabel: '存檔',
})
@@ -50,7 +48,6 @@ const emit = defineEmits<{
{{ submitLabel }}
</v-btn>
<v-btn type="button" variant="tonal" @click="emit('reset')">{{ resetLabel }}</v-btn>
<v-btn type="button" variant="text" @click="emit('back')">{{ backLabel }}</v-btn>
</v-row>
</v-card>
</v-container>