1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| <template>
| <exception-page home-route="/dashboard/workplace" :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>
|
|