17 lines
234 B
JavaScript
17 lines
234 B
JavaScript
// State
|
|
// data ...
|
|
// Mutations
|
|
//
|
|
//
|
|
// Actions
|
|
import patient from './modules/patient.js'
|
|
export const store = new Vuex.Store({
|
|
modules :{
|
|
patient : patient
|
|
},
|
|
mutations: {
|
|
},
|
|
actions: {
|
|
}
|
|
});
|