mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 13:43:59 +00:00
22 lines
274 B
Vue
22 lines
274 B
Vue
<template>
|
|
<div class="container">
|
|
<p>Final Page</p>
|
|
<NuxtLink to="/">
|
|
Go to /
|
|
</NuxtLink>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.container {
|
|
font-size: 20px;
|
|
text-align: center;
|
|
padding-top: 100px;
|
|
}
|
|
</style>
|