UNPKG

@quasar/app

Version:

Quasar Framework local CLI

12 lines (9 loc) 277 B
import { ActionTree } from 'vuex'; import { StateInterface } from '../index'; import { ExampleStateInterface } from './state'; const actions: ActionTree<ExampleStateInterface, StateInterface> = { someAction (/* context */) { // your code } }; export default actions;