26 lines
436 B
Vue
26 lines
436 B
Vue
<script setup lang="ts">
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<div class="LayoutDefault">
|
|
<nav class="LayoutDefault__nav">
|
|
<router-link to="/">Home</router-link> |
|
|
<router-link to="/about">About</router-link>
|
|
</nav>
|
|
<main class="LayoutDefault__main">
|
|
<slot />
|
|
</main>
|
|
<footer class="LayoutDefault__footer">Blank footer</footer>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
|
|
nav {
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
</style>
|