fantasia-archive/src/store/module-example/actions.ts

12 lines
272 B
TypeScript
Raw Normal View History

2021-07-10 04:38:42 +12:00
import { ActionTree } from 'vuex'
import { StateInterface } from '../index'
import { ExampleStateInterface } from './state'
const actions: ActionTree<ExampleStateInterface, StateInterface> = {
someAction (/* context */) {
// your code
}
}
export default actions