| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | <template>
<div class="container container-table">
<div class="row vertical-10p">
<div class="container">
<img src="/static/img/logo.png" class="center-block logo">
<div class="text-center col-sm-6 col-sm-offset-3">
<h1>You are lost.</h1>
<h4>This page doesn't exist.</h4>
<router-link to="/">Take me home.</router-link>
</div>
</div>
</div>
</div>
</template>
<script>
export default {
name: 'NotFound'
}
</script>
<style>
</style>
|