import { mapActions } from 'vuex' import apiFunc from '../services' export default { methods: { ...mapActions('common', [ 'login' ]), async onLogin() { const params = {} const res = await apiFunc.login(params) } } }
注意在使用 async/await 时如果外层的错误没有捕捉到,最好加一层 try...catch... 。
您可能感兴趣的文章: