import constants from './constants'; import { ActionTree } from 'vuex' const actions : ActionTree< any , any > = { // ES2015 风格 [constants.SETNAME]( {commit} ){ return new Promise( ( resolve , reject ) =>{ setTimeout( ()=>{ resolve( commit(constants.SETNAME ,1) ) },1000) }) } } export default actions