mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-27 08:02:01 +00:00
feat(vue-app): Add deprecating for classic mode and handle mutations/actions HMR to store/index.js
This commit is contained in:
parent
b2eee1772e
commit
c8b920a145
@ -79,10 +79,14 @@ void function updateModules() {
|
|||||||
// Update `root.modules` with the latest definitions.
|
// Update `root.modules` with the latest definitions.
|
||||||
updateModules()
|
updateModules()
|
||||||
// Trigger a hot update in the store.
|
// Trigger a hot update in the store.
|
||||||
window.<%= globals.nuxt %>.$store.hotUpdate({ modules: storeData.modules })
|
window.<%= globals.nuxt %>.$store.hotUpdate(storeData)
|
||||||
})
|
})
|
||||||
}<% } %>
|
}<% } %>
|
||||||
}
|
}
|
||||||
|
else {
|
||||||
|
const log = (process.server ? require('consola') : console)
|
||||||
|
log.warn('Classic mode for store/ is deprecated and will be removed in Nuxt 3.')
|
||||||
|
}
|
||||||
}()
|
}()
|
||||||
|
|
||||||
// createStore
|
// createStore
|
||||||
|
Loading…
Reference in New Issue
Block a user