export const actions = { doSomeStuff() { return fetch('/api/stuff').then( (res) => (stores.stuffList = res), (err) => Promise.reject(err) ) } } export const stores = { stuffList: [], }