Nuxt is based on Vue.js and I find their building blocks to be much neater compared to the React based Next.js.
10 lines
151 B
Vue
10 lines
151 B
Vue
<template>
|
|
<main>
|
|
<h1>Schedule Demo</h1>
|
|
<ul>
|
|
<li>
|
|
<NuxtLink to="/schedule">Schedule demo</NuxtLink>
|
|
</li>
|
|
</ul>
|
|
</main>
|
|
</template>
|