mirror of
https://github.com/fugary/simple-element-plus-template.git
synced 2025-11-12 14:27:49 +00:00
20 lines
306 B
Vue
20 lines
306 B
Vue
<script setup>
|
|
import { onMounted } from 'vue'
|
|
import { useRoute } from 'vue-router'
|
|
onMounted(() => {
|
|
console.info('=========mounted', useRoute().path)
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<strong>
|
|
{{ $t('menu.label.userManagement') }}
|
|
</strong>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|