Modify code organization

This commit is contained in:
pycook
2019-12-18 23:33:22 +09:00
parent 9cd11dbbe5
commit 518f2de4c9
329 changed files with 38 additions and 38 deletions

View File

@@ -0,0 +1,17 @@
<template>
<exception-page type="403" />
</template>
<script>
import { ExceptionPage } from '@/components'
export default {
components: {
ExceptionPage
}
}
</script>
<style scoped>
</style>

View File

@@ -0,0 +1,17 @@
<template>
<exception-page type="404" />
</template>
<script>
import { ExceptionPage } from '@/components'
export default {
components: {
ExceptionPage
}
}
</script>
<style scoped>
</style>

View File

@@ -0,0 +1,17 @@
<template>
<exception-page type="500" />
</template>
<script>
import { ExceptionPage } from '@/components'
export default {
components: {
ExceptionPage
}
}
</script>
<style scoped>
</style>