...

/

Solution Review: Routing Using Nuxt

Solution Review: Routing Using Nuxt

Create a project using the Nuxt router.

Solution

The solution to the “Using The Router” challenge is provided below:

<template>
	<div>
		<h1>Welcome to the homepage</h1>
		<ul>
			<li><NuxtLink to="/">home</NuxtLink></li>
			<li><NuxtLink to="/contact">contact page</NuxtLink></li>
			<li><NuxtLink to="/about">about page</NuxtLink></li>
      </ul>
      <slot/>
	</div>
</template>
Implement the code

Explanation

Here is an explanation of the above code solution: ...