* 获取当前设备信息
()
| 88 | * 获取当前设备信息 |
| 89 | */ |
| 90 | getDeviceInfo(): DeviceInfo { |
| 91 | return { |
| 92 | isMobile: this.isMobileView, |
| 93 | isSmallScreen: this.isSmallScreen, |
| 94 | isDesktop: !this.isMobileView, |
| 95 | isLargeScreen: !this.isSmallScreen |
| 96 | }; |
| 97 | } |
| 98 | |
| 99 | /** |
| 100 | * 是否为移动设备 |