mirror of
https://github.com/iczer/vue-antd-admin.git
synced 2025-05-17 19:19:16 +08:00
19 lines
381 B
Vue
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>
|