mirror of
https://github.com/iczer/vue-antd-admin.git
synced 2025-05-22 06:35:39 +08:00
22 lines
470 B
Vue
22 lines
470 B
Vue
<template>
|
|
<exception-page :style="`min-height: ${minHeight}`" type="404" />
|
|
</template>
|
|
|
|
<script>
|
|
import ExceptionPage from '@/components/exception/ExceptionPage'
|
|
import {mapState} from 'vuex'
|
|
export default {
|
|
name: 'Exp404',
|
|
components: {ExceptionPage},
|
|
computed: {
|
|
...mapState('setting', ['pageMinHeight']),
|
|
minHeight() {
|
|
return this.pageMinHeight ? this.pageMinHeight + 'px' : '100vh'
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="less">
|
|
</style>
|