vue2 H5如何获取当前手机的机型信息
时间: 2023-08-22 07:08:21 浏览: 121
可以使用第三方库device.js来获取手机机型信息。
安装:`npm install device.js --save`
使用示例代码:
```javascript
import device from 'device.js';
// 获取当前设备类型
const deviceType = device.type;
// 获取当前设备名称
const deviceName = device.os();
// 获取当前设备是否为移动端
const isMobile = device.mobile();
// 获取当前设备是否为平板
const isTablet = device.tablet();
// 获取当前设备是否为桌面端
const isDesktop = device.desktop();
```
其中,device.type 可以返回以下几种设备类型:
- desktop
- tv
- tablet
- phone
- wearable
注意:此方法只能获取设备类型和名称,并不能获取具体的型号信息。
阅读全文