[node] 检测调试工具状态库 devtools-detector
说明在某些场景需要获取打印台窗口状态时,devtools-detector可以作为解决方案。github地址:https://github.com/sindresorhus/devtools-detect#readme使用vue项目直接在main.js中加入import { addListener, lanuch } from 'devtools-detector'// 1. add listen
·
说明
在某些场景需要获取打印台窗口状态时,devtools-detector可以作为解决方案。
github地址:https://github.com/sindresorhus/devtools-detect#readme
使用
vue项目直接在main.js中加入
import { addListener, lanuch } from 'devtools-detector'
// 1. add listener
addListener(
// eslint-disable-next-line no-return-assign
isOpen =>
(isOpen ? location.href = '/' : '')
)
// 2. lanuch detect
lanuch()
更多推荐
已为社区贡献2条内容
所有评论(0)