hypothetical/resources/components/pages/error404.vue
2018-04-15 22:02:06 -04:00

22 lines
441 B
Vue

<template>
<div class="error-page-component">
<h1>Page Not Found</h1>
</div>
</template>
<script>
import BasePageMixin from "mixins/base-page.js";
export default {
mixins: [
BasePageMixin
],
data() {
return {
metaTitle: "Page Not Found",
metaDescription: "The requested page cannot be found"
};
}
};
</script>