2018-08-04 17:28:39 -04:00

16 lines
221 B
JavaScript

import { make } from 'vuex-pathify'
/* global siteConfig */
const state = {
company: '',
mascot: true,
title: siteConfig.title
}
export default {
namespaced: true,
state,
mutations: make.mutations(state)
}