mirror of
https://github.com/iczer/vue-antd-admin
synced 2025-05-07 11:06:41 +08:00
27 lines
480 B
Vue
27 lines
480 B
Vue
<template>
|
|
<div class="new-page" :style="`min-height: ${pageMinHeight}px`">
|
|
<h1>{{$t('content')}}</h1>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import {mapState} from 'vuex'
|
|
export default {
|
|
name: 'Demo',
|
|
i18n: require('./i18n'),
|
|
data() {
|
|
return {
|
|
}
|
|
},
|
|
computed: {
|
|
...mapState('setting', ['pageMinHeight']),
|
|
desc() {
|
|
return this.$t('description')
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="less">
|
|
@import "index";
|
|
</style> |