1
0
Fork 0
moritzruth.de/store/index.js
2019-02-20 19:16:47 +01:00

12 lines
209 B
JavaScript

export const state = () => ({
logoText: "ctexxx"
});
export const mutations = {
setLogoText(state, value) {
state.logoText = value;
},
resetLogoText(state) {
state.logoText = "ctexxx";
}
};