핫 리로딩

카탈로그
  1. 1. 핫 리로딩

핫 리로딩

Vuex는 webpack의 핫 모듈 변경 API를 사용하여 개발 중에 핫 리로드 변이, 모듈, 액션 및 getter를 지원합니다. browserify-hmr 플러그인으로 Browserify에서 사용할 수도 있습니다.

변이와 모듈의 경우, store.hotUpdate() API 메소드를 사용할 필요가 있습니다.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// store.js
import Vue from 'vue'
import Vuex from 'vuex'
import mutations from './mutations'
import moduleA from './modules/a'

Vue.use(Vuex)

const state = { ... }

const store = new Vuex.Store({
state,
mutations,
modules: {
a: moduleA
}
})

if (module.hot) {
// 액션과 변이를 핫 모듈로 받아 들인다.
module.hot.accept(['./mutations', './modules/a'], () => {
// 업데이트 된 모듈은 babel 6 모듈 출력으로 인해
// .default를 여기에 추가해야합니다.
const newMutations = require('./mutations').default
const newModuleA = require('./modules/a').default
// 새로운 액션과 변이로 바꿉니다.
store.hotUpdate({
mutations: newMutations,
modules: {
a: newModuleA
}
})
})
}

counter-hot 예제로 핫 리로드를 확인하십시오.