8000 fix: warn when unregistering non existing module by kiaking · Pull Request #1786 · vuejs/vuex · GitHub
[go: up one dir, main page]

Skip to content

fix: warn when unregistering non existing module #1786

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 29, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
refactor: store child as a variable and reuse it
  • Loading branch information
kiaking committed Jun 29, 2020
commit 4fae6220389bbb66a01a3b6178bb09993abe389a
5 changes: 3 additions & 2 deletions src/module/module-collection.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,9 @@ export default class ModuleCollection {
unregister (path) {
const parent = this.get(path.slice(0, -1))
const key = path[path.length - 1]
const child = parent.getChild(key)

if (!parent.getChild(key)) {
if (!child) {
if (__DEV__) {
console.warn(
`[vuex] trying to unregister module '${key}', which is ` +
Expand All @@ -60,7 +61,7 @@ export default class ModuleCollection {
return
}

if (!parent.getChild(key).runtime) {
if (!child.runtime) {
return
}

Expand Down
0