mirror of
https://github.com/Hopiu/vue-material.git
synced 2026-05-21 05:21:52 +00:00
13 lines
175 B
Vue
13 lines
175 B
Vue
<template>
|
|
<section>
|
|
<h1>Error 404</h1>
|
|
</section>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
mounted() {
|
|
this.$root.pageTitle = 'Error';
|
|
}
|
|
};
|
|
</script>
|