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