[Vuejs]-Using if…else… in Arrow Function

1👍

If you want to use arrow function, it should be:

fetch('http://work1999.kcg.gov.tw/open1999/ServiceRequestsQuery.asmx/ServiceRequestsQuery')
    .then(response => { return response.ok ? response.json() : commit(roottypes.LOADING, false) });

Leave a comment