We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a7b02a commit 4c3abddCopy full SHA for 4c3abdd
src/entries/web-runtime.js
@@ -3,7 +3,7 @@
3
import Vue from 'core/index'
4
import config from 'core/config'
5
import { extend, noop } from 'shared/util'
6
-import { devtools, inBrowser } from 'core/util/index'
+import { devtools, inBrowser, isEdge } from 'core/util/index'
7
import { patch } from 'web/runtime/patch'
8
import platformDirectives from 'web/runtime/directives/index'
9
import platformComponents from 'web/runtime/components/index'
@@ -45,7 +45,7 @@ setTimeout(() => {
45
devtools.emit('init', Vue)
46
} else if (
47
process.env.NODE_ENV !== 'production' &&
48
- inBrowser && /Chrome\/\d+/.test(window.navigator.userAgent)
+ inBrowser && !isEdge && /Chrome\/\d+/.test(window.navigator.userAgent)
49
) {
50
console.log(
51
'Download the Vue Devtools for a better development experience:\n' +
0 commit comments