new command module

This commit is contained in:
Warunee Tamkoo 2024-09-09 17:26:30 +07:00
parent 612cd87689
commit a750c4924c
13 changed files with 91 additions and 4 deletions

View file

@ -0,0 +1,11 @@
<script setup lang="ts">
import { onMounted } from "vue";
onMounted(() => {
console.log("mounted");
});
</script>
<template>detail</template>
<style scoped></style>

View file

@ -0,0 +1,11 @@
<script setup lang="ts">
import { onMounted } from "vue";
onMounted(() => {
console.log("mounted");
});
</script>
<template>tabs / lists</template>
<style scoped></style>