Files
dancefinder-app/store/index.js
T

10 lines
144 B
JavaScript
Raw Normal View History

2019-03-02 15:11:46 +01:00
export const state = () => ({
2020-01-25 14:59:14 +01:00
title: ''
})
2019-03-02 15:11:46 +01:00
export const mutations = {
2020-01-25 14:59:14 +01:00
setTitle(currentState, title) {
currentState.title = title
2019-03-02 15:11:46 +01:00
}
2020-01-25 14:59:14 +01:00
}