new command module
This commit is contained in:
parent
612cd87689
commit
a750c4924c
13 changed files with 91 additions and 4 deletions
11
src/modules/18_command/views/detail.vue
Normal file
11
src/modules/18_command/views/detail.vue
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<script setup lang="ts">
|
||||
import { onMounted } from "vue";
|
||||
|
||||
onMounted(() => {
|
||||
console.log("mounted");
|
||||
});
|
||||
</script>
|
||||
|
||||
<template>detail</template>
|
||||
|
||||
<style scoped></style>
|
||||
11
src/modules/18_command/views/lists.vue
Normal file
11
src/modules/18_command/views/lists.vue
Normal 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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue