mirror of
https://github.com/em-squared/5e-drs.git
synced 2025-10-30 13:14:20 +00:00
possibilité de partager des créations
This commit is contained in:
parent
398bcc9ba3
commit
d111a52ee7
16 changed files with 287 additions and 13 deletions
|
|
@ -32,6 +32,8 @@ export default new Vuex.Store({
|
|||
isThemeDark: false,
|
||||
isOpenAboutDialog: false,
|
||||
isOpenSupportDialog: false,
|
||||
isOpenShareHomebrewDialog: false,
|
||||
shareURI: '',
|
||||
isOpenSnackbar: false,
|
||||
snackbarText: '',
|
||||
l5r: false
|
||||
|
|
@ -46,6 +48,8 @@ export default new Vuex.Store({
|
|||
isThemeDark: state => state.isThemeDark,
|
||||
isOpenAboutDialog: state => state.isOpenAboutDialog,
|
||||
isOpenSupportDialog: state => state.isOpenSupportDialog,
|
||||
isOpenShareHomebrewDialog: state => state.isOpenShareHomebrewDialog,
|
||||
shareURI: state => state.shareURI,
|
||||
isOpenSnackbar: state => state.isOpenSnackbar,
|
||||
l5r: state => state.l5r,
|
||||
},
|
||||
|
|
@ -113,6 +117,12 @@ export default new Vuex.Store({
|
|||
setIsOpenSupportDialog: (state, payload) => {
|
||||
state.isOpenSupportDialog = payload
|
||||
},
|
||||
setIsOpenShareHomebrewDialog: (state, payload) => {
|
||||
state.isOpenShareHomebrewDialog = payload
|
||||
},
|
||||
setShareURI: (state, payload) => {
|
||||
state.shareURI = payload
|
||||
},
|
||||
setIsOpenSnackbar: (state, payload) => {
|
||||
state.isOpenSnackbar = payload
|
||||
if (payload === true) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue