简单菜单表单

This commit is contained in:
Gary Fu
2024-01-06 21:21:23 +08:00
parent a929818f63
commit 166b0edd21
6 changed files with 51 additions and 1 deletions

View File

@@ -0,0 +1,19 @@
<script setup>
import { onMounted } from 'vue'
import { useRoute } from 'vue-router'
onMounted(() => {
console.info('=========mounted', useRoute().path)
})
</script>
<template>
<div>
<strong>
{{ $t('menu.label.groupManagement') }}
</strong>
</div>
</template>
<style scoped>
</style>

View File

@@ -6,7 +6,7 @@ import { searchMenusResult } from '@/services/menu/MenuService'
const router = useRouter()
const page = ref(useDefaultPage(8))
const page = ref(useDefaultPage())
const tableData = ref([])
const loading = ref(true)

View File

@@ -0,0 +1,19 @@
<script setup>
import { onMounted } from 'vue'
import { useRoute } from 'vue-router'
onMounted(() => {
console.info('=========mounted', useRoute().path)
})
</script>
<template>
<div>
<strong>
{{ $t('menu.label.tenantManagement') }}
</strong>
</div>
</template>
<style scoped>
</style>