方法一:
1.在scr下面建立utils文件夹,创建js文件如clientBrowser.js
const ua = navigator.userAgent.toLowerCase();
/**
* 当前设备是否为安卓
* @returns {boolean}
*/
export function android() {
return ua.indexOf("android") > -1 || ua.indexOf("linux") > -1;
}
/**
* 当前设备是否为苹果
* @returns {boolean}
*/
export function apple(</