Initial commit

This commit is contained in:
Nick Thomson
2022-09-19 16:29:24 +01:00
parent ae4ac392c6
commit 7d4e7ce2c0
3 changed files with 82 additions and 1 deletions

View File

@ -14,6 +14,7 @@ export const state = () => ({
selectedAuthor: null,
isCasting: false, // Actively casting
isChromecastInitialized: false, // Script loaded
showBatchQuickMatchModal: false,
dateFormats: [
{
text: 'MM/DD/YYYY',
@ -108,5 +109,9 @@ export const mutations = {
},
setCasting(state, val) {
state.isCasting = val
},
setShowBatchQuickMatchModal(state, val) {
console.log("setShowBatchQuickMatchModal: " + val)
state.showBatchQuickMatchModal = val
}
}