4
0
mirror of https://github.com/iczer/vue-antd-admin.git synced 2025-05-21 13:39:18 +08:00
chenghongxing f59f613f91 feat: add state of min page height in setting module; 🌟
新增:vuex setting 模块增加页面最小高度 state
2020-07-25 13:11:39 +08:00

19 lines
381 B
Vue

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