export const state = () => ({
title: 'Damillora',
})
export const mutations = {
SET_TITLE (state, title) {
state.title = title
}