提交 9a1f62b6 编写于 作者: fxy060608's avatar fxy060608

feat(h5): disable vue devtools tips in HBuilderX

上级 1a462956
......@@ -59,7 +59,17 @@ function getLocation (base = '/') {
export default {
install (Vue, {
routes
} = {}) {
} = {}) {
if (
__PLATFORM__ === 'h5' &&
Vue.config.devtools &&
typeof window !== 'undefined' &&
window.navigator.userAgent.toLowerCase().indexOf('hbuilderx') !== -1
) {
// HBuilderX 内置浏览器禁用 devtools 提示
Vue.config.devtools = false
}
initPolyfill(Vue)
lifecycleMixin(Vue)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册