大宝管理后台代码
dcc
2024-06-11 d2a6b6f9de0589ef3e74e37eb138fbee097673c1
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 }