miracle/store/index.js
2020-02-02 03:26:13 +07:00

11 lines
142 B
JavaScript

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