initial commit
This commit is contained in:
25
src/layouts/LayoutDefault.vue
Normal file
25
src/layouts/LayoutDefault.vue
Normal file
@@ -0,0 +1,25 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user