refactor: update to new project structure

This commit is contained in:
chenghx
2018-09-11 11:45:32 +08:00
parent 263f3064a7
commit f8483833f1
48 changed files with 205 additions and 246 deletions

View File

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

View File

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

View File

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