Nuxt/examples/custom-layouts/layouts/error.vue
2016-12-24 18:00:56 +01:00

24 lines
330 B
Vue

<template>
<div class="container">
<h1>Sorry, page not found</h1>
<nuxt-link to="/">Home page</nuxt-link>
</div>
</template>
<script>
export default {
props: ['error']
}
</script>
<style scoped>
.container {
font-family: sans-serif;
padding-top: 10%;
text-align: center;
}
h1 {
font-size: 20px;
}
</style>