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

19 lines
381 B
Vue

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