We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b18718b commit e06ad55Copy full SHA for e06ad55
src/store.js
@@ -12,6 +12,8 @@ import {
12
unifyObjectStyle
13
} from './store-util'
14
15
+const isBrowser = typeof document !== 'undefined'
16
+
17
export function createStore (options) {
18
return new Store(options)
19
}
@@ -73,9 +75,9 @@ export class Store {
73
75
app.provide(injectKey || storeKey, this)
74
76
app.config.globalProperties.$store = this
77
- const useDevtools = this._devtools !== undefined
78
+ const useDevtools = (this._devtools !== undefined
79
? this._devtools
- : __DEV__ || __VUE_PROD_DEVTOOLS__
80
+ : __DEV__ || __VUE_PROD_DEVTOOLS__) && isBrowser
81
82
if (useDevtools) {
83
addDevtools(app, this)
0 commit comments