Update custom layout example

This commit is contained in:
Sébastien Chopin 2016-12-25 22:55:00 +01:00
parent 05be1ed6b1
commit cb4dcf0b37

View File

@ -1,6 +1,7 @@
<template>
<div class="container">
<h1>Sorry, page not found</h1>
<h1 v-if="error.statusCode === 404">Page not found</h1>
<h1 v-else>An error occured</h1>
<nuxt-link to="/">Home page</nuxt-link>
</div>
</template>