新大宝股票管理后台
1
jhzh
2026-02-05 0e944ac4d2920407b5ed5ee55a78f6e38c255c5a
1
2
3
4
5
6
7
8
9
10
11
import { mapState } from 'vuex'
 
const deviceMixin = {
  computed: {
    ...mapState({
      isMobile: state => state.app.isMobile
    })
  }
}
 
export { deviceMixin }