2020-07-28 20:48:02 +08:00

22 lines
489 B
Vue

<template>
<exception-page home-route="/demo" :style="`min-height: ${minHeight}`" type="403" />
</template>
<script>
import ExceptionPage from '@/components/exception/ExceptionPage'
import {mapState} from 'vuex'
export default {
name: 'Exp403',
components: {ExceptionPage},
computed: {
...mapState('setting', ['pageMinHeight']),
minHeight() {
return this.pageMinHeight ? this.pageMinHeight + 'px' : '100vh'
}
}
}
</script>
<style scoped lang="less">
</style>