forked from DebaucheryLibrarian/traxxx
28 lines
380 B
JavaScript
28 lines
380 B
JavaScript
function setTagFilter(state, tagFilter) {
|
|
state.tagFilter = tagFilter;
|
|
}
|
|
|
|
function setRange(state, range) {
|
|
state.range = range;
|
|
}
|
|
|
|
function setBatch(state, batch) {
|
|
state.batch = batch;
|
|
}
|
|
|
|
function setSfw(state, sfw) {
|
|
state.sfw = sfw;
|
|
}
|
|
|
|
function setTheme(state, theme) {
|
|
state.theme = theme;
|
|
}
|
|
|
|
export default {
|
|
setTagFilter,
|
|
setRange,
|
|
setBatch,
|
|
setSfw,
|
|
setTheme,
|
|
};
|