3328350766
6 天以前 761eb03d6b3bebd0b197179564c84d89d3d12a0d
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
    })
  }
}