20 lines
313 B
Vue
20 lines
313 B
Vue
<script setup lang="ts">
|
|
import { useRouter } from 'vue-router'
|
|
|
|
// Router instance
|
|
const router = useRouter()
|
|
|
|
// 页面跳转函数
|
|
const goToAdmin = () => {
|
|
router.push('/admin')
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<router-view></router-view>
|
|
</template>
|
|
|
|
<style scoped>
|
|
/* Global styles can be added here */
|
|
</style>
|