getters.js 551 Bytes
Newer Older
SHINDAESUB committed
1
export const projects = state => state.projects
SHINDAESUB committed
2

SHINDAESUB committed
3 4 5
// export const projectListS = state  => {    
//     return state.projectList.filter(s => s.project_state === "success")
// }
SHINDAESUB committed
6

SHINDAESUB committed
7 8 9
// export const projectListW = state  => {    
//     return state.projectList.filter(w => w.project_state === "waiting")
// }
SHINDAESUB committed
10

SHINDAESUB committed
11 12 13
// export const projectListP = state  => {    
//     return state.projectList.filter(p => p.project_state === "proceeding")
// }
SHINDAESUB committed
14

SHINDAESUB committed
15 16 17
// export const projectListC = state => {
//     return state.projectList.filter(c => c.project_state === "")
// }