miracle/store/index.js

11 lines
142 B
JavaScript

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