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