You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
221 B
14 lines
221 B
|
6 years ago
|
<script type="text/jsx">
|
||
|
6 years ago
|
import ExceptionPage from '@/view/_common/ExceptionPage'
|
||
|
6 years ago
|
|
||
|
6 years ago
|
export default {
|
||
|
6 years ago
|
name: 'Page404',
|
||
|
6 years ago
|
|
||
|
6 years ago
|
functional: true,
|
||
|
6 years ago
|
|
||
|
6 years ago
|
render() {
|
||
|
|
return <ExceptionPage type="404"/>
|
||
|
6 years ago
|
}
|
||
|
6 years ago
|
}
|
||
|
6 years ago
|
</script>
|