1
2
3
4
5
6
7
8
9
10
11
12
13
| /*
| * @description: 封装组件内部的非props外部参数
| */
| import { mapState } from 'vuex'
| export default {
| computed: {
| ...mapState('bigScreen', {
| pageInfo: state => state.pageInfo,
| customTheme: state => state.pageInfo.pageConfig.customTheme,
| themeJson: state => state.pageInfo.pageConfig?.themeJson
| })
| }
| }
|
|