mirror of
https://github.com/iczer/vue-antd-admin
synced 2025-04-05 19:41:37 +08:00
23 lines
508 B
Vue
23 lines
508 B
Vue
<template>
|
|
<exception-page :style="`min-height: ${minHeight}px`" type="500" />
|
|
</template>
|
|
|
|
<script>
|
|
import ExceptionPage from '@/components/exception/ExceptionPage'
|
|
import {mapState} from 'vuex'
|
|
export default {
|
|
name: 'Exp500',
|
|
components: {ExceptionPage},
|
|
inject: ['layoutMinHeight'],
|
|
computed: {
|
|
...mapState('setting', ['multiPage']),
|
|
minHeight() {
|
|
return this.multiPage ? this.layoutMinHeight - 24 : this.layoutMinHeight
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="less">
|
|
</style>
|