| 1234567891011121314151617181920212223 |
- export const state = () => ({
- list: {
- data: []
- },
- details: {
- data: []
- },
- trysteeList: {
- data: []
- }
- })
- export const mutations = {
- REQUEST_LIST_SUCCESS (state, result) {
- state.list.data = result
- },
- REQUEST_DETAILS_SUCCESS (state, result) {
- state.details.data = result
- },
- REQUEST_TRUSTEELIST_SUCCESS (state, result) {
- state.trysteeList.data = result
- }
- }
|