UNPKG

wox-cli

Version:

scaffold for create component, toolkit and so on

9 lines (8 loc) 204 B
import { getList } from '@/api'; import { GET_LIST } from './mutations'; export default { async getUserList({ commit, state }) { let res = await getList(); commit(GET_LIST, {list: res}); } }