mirror of
https://github.com/kuaifan/dootask.git
synced 2025-12-12 11:19:56 +00:00
26 lines
409 B
JavaScript
Vendored
26 lines
409 B
JavaScript
Vendored
import {mapState} from "vuex";
|
|
|
|
export default {
|
|
computed: {
|
|
...mapState([
|
|
'windowWidth',
|
|
'windowHeight',
|
|
|
|
'windowActive',
|
|
|
|
'windowScrollY',
|
|
|
|
'windowTouch',
|
|
|
|
'windowLandscape',
|
|
'windowPortrait',
|
|
|
|
'userId',
|
|
'userToken',
|
|
|
|
'routeName',
|
|
'routePath',
|
|
])
|
|
}
|
|
}
|