17 lines
214 B
Vue
17 lines
214 B
Vue
|
|
<template>
|
||
|
|
<exception-page type="403" />
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
import ExceptionPage from './ExceptionPage'
|
||
|
|
|
||
|
|
export default {
|
||
|
|
components: {
|
||
|
|
ExceptionPage
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style scoped>
|
||
|
|
|
||
|
|
</style>
|