10 lines
156 B
Vue
10 lines
156 B
Vue
|
<script setup lang="ts">
|
||
|
import { RouterLink, RouterView } from "vue-router";
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<header>Header</header>
|
||
|
|
||
|
<RouterView />
|
||
|
</template>
|