mirror of
https://github.com/fugary/simple-element-plus-template.git
synced 2025-12-10 04:47:50 +00:00
简单菜单表单
This commit is contained in:
19
src/views/admin/Groups.vue
Normal file
19
src/views/admin/Groups.vue
Normal 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>
|
||||
@@ -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)
|
||||
|
||||
19
src/views/admin/Tenants.vue
Normal file
19
src/views/admin/Tenants.vue
Normal 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>
|
||||
Reference in New Issue
Block a user