UNPKG
jy-vue3-photo-preview
Version:
latest (0.0.6)
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
一个 vue3 的图片预览组件
github.com/NameWjp/vue3-photo-preview
NameWjp/vue3-photo-preview
jy-vue3-photo-preview
/
dist
/
lib
/
utils
/
isTouchDevice.js
8 lines
•
305 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
/** * 当前设备是否支持触摸事件 */
var
isTouchDevice =
typeof
document
!==
'undefined'
&&
'ontouchstart'
in
document
.
documentElement
;
exports
.
default
= isTouchDevice;
//# sourceMappingURL=isTouchDevice.js.map