initial commit

This commit is contained in:
Geriano
2022-07-15 13:03:42 +07:00
commit 349baa399a
163 changed files with 19396 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
<script setup>
defineProps({
message: String,
});
</script>
<template>
<div v-show="message">
<p class="text-sm text-red-600">
{{ message }}
</p>
</div>
</template>