10 lines
165 B
Vue
10 lines
165 B
Vue
<template>
|
|
<div></div>
|
|
</template>
|
|
<script lang="ts" setup>
|
|
import { router } from '@/plugin';
|
|
|
|
console.log(router.currentRoute);
|
|
</script>
|
|
<style scoped></style>
|