【Vuex】Stateを丸ごと置き換える
Good
Object.assign
を使って置換できます。
mutation.js
export default {
replaceState (state, { value }) {
Object.assign(state, value)
}
}
Bad
Vuexでstateを置き換えたいときに、
以下のように代入してもうまく動作しません。
export default {
replaceState (state, { value }) {
staet = value
}
}
Author And Source
この問題について(【Vuex】Stateを丸ごと置き換える), 我々は、より多くの情報をここで見つけました https://qiita.com/tamonmon/items/81be7cd87ceca2e18ec1著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .