18 lines
364 B
Vue
18 lines
364 B
Vue
<style scoped>
|
|
|
|
ul {
|
|
|
|
display: flex; gap: 6rem; justify-content: center;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<template>
|
|
<ul>
|
|
<li><NuxtLink to="/">home</NuxtLink></li>
|
|
<li><NuxtLink to="/info">info</NuxtLink></li>
|
|
<li><NuxtLink to="/maker">maker</NuxtLink></li>
|
|
<li><NuxtLink to="/credits">credits</NuxtLink></li>
|
|
</ul>
|
|
</template> |