BerniWittmann/cape-frontend

View on GitHub
src/vuex/modules/tag/mutation-types.js

Summary

Maintainability
A
0 mins
Test Coverage
/* ============
 * Mutation types for the tag module
 * ============
 *
 * The mutation types that are available
 * on the tag module.
 */

export const STORE = 'STORE'
export const ADD = 'ADD'
export const REMOVE = 'REMOVE'

export default {
  STORE,
  ADD,
  REMOVE
}