Moved to Vue

This commit is contained in:
2026-04-02 22:01:38 +10:00
parent 4adba94109
commit 0b14b40fd6
68 changed files with 4853 additions and 306 deletions
+14
View File
@@ -0,0 +1,14 @@
<script setup>
defineProps({
value: {
type: String,
},
});
</script>
<template>
<label class="block text-sm font-medium text-gray-700">
<span v-if="value">{{ value }}</span>
<span v-else><slot /></span>
</label>
</template>