9 lines
165 B
Vue
9 lines
165 B
Vue
<template>
|
|
<RouterView />
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { useAuthTokenStore } from '@/store/auth'
|
|
import { RouterView } from 'vue-router'
|
|
</script>
|