hypothetical/resources/components/pages/error404.vue

23 lines
432 B
Vue
Raw Normal View History

<template>
<div class="error-page-component">
Page Not Found
</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>