16 lines
205 B
Vue
16 lines
205 B
Vue
<script setup>
|
|
import { RouterLink, RouterView } from "vue-router";
|
|
</script>
|
|
|
|
<template>
|
|
<header>
|
|
<div class="wrapper">
|
|
</div>
|
|
</header>
|
|
|
|
<RouterView />
|
|
</template>
|
|
|
|
<style scoped>
|
|
</style>
|