mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-09 19:26:38 -05:00
15 lines
261 B
Vue
15 lines
261 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
|
|
]
|
|
};
|
|
</script>
|