2019-01-04 17:04:30 -05:00
|
|
|
<template>
|
|
|
|
<div>
|
2019-01-04 16:11:27 -05:00
|
|
|
<headful title="404 Not Found"> </headful>
|
2019-01-04 17:04:30 -05:00
|
|
|
<h1>Error 404: Path {{ path }} not found</h1>
|
|
|
|
You seem to have gone to the wrong place, would you like to go
|
|
|
|
back to the <a href="/">Deck Index</a>?
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
name: 'Err404',
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
path: window.location.pathname,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
</script>
|