wip(freight): migration 0017 + model/column-list groundwork for add-freight-templates

This commit is contained in:
Chengdong Zhang
2026-09-23 17:39:45 +08:00
parent a83e857bdf
commit 5b426486ac
105 changed files with 6193 additions and 1566 deletions
+1 -6
View File
@@ -3,12 +3,7 @@ const props = withDefaults(defineProps<{ padded?: boolean }>(), { padded: true }
</script>
<template>
<div
:class="[
'rounded-lg border border-border bg-surface shadow-sm',
props.padded ? 'p-5' : '',
]"
>
<div :class="['border-border bg-surface rounded-lg border shadow-sm', props.padded ? 'p-5' : '']">
<slot />
</div>
</template>