16 lines
221 B
JavaScript
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)
|
||
|
}
|