Files
dancefinder-app/store/index.js
T

10 lines
132 B
JavaScript
Raw Normal View History

2019-03-02 15:11:46 +01:00
export const state = () => ({
title: ""
});
export const mutations = {
setTitle(state, title) {
state.title = title
}
};