vue-material/src/docs/pages/Error.vue

14 lines
175 B
Vue
Raw Normal View History

2016-08-30 15:41:16 +00:00
<template>
<section>
<h1>Error 404</h1>
</section>
</template>
2016-09-19 03:45:48 +00:00
<script>
export default {
mounted() {
this.$root.pageTitle = 'Error';
}
};
</script>