Add: Experimental collections add/remove & db #151

This commit is contained in:
advplyr 2021-11-05 20:24:02 -05:00
parent 3d35b7dc3d
commit bf0893d759
27 changed files with 784 additions and 62 deletions

18
client/store/globals.js Normal file
View file

@ -0,0 +1,18 @@
export const state = () => ({
showUserCollectionsModal: false
})
export const getters = {
}
export const actions = {
}
export const mutations = {
setShowUserCollectionsModal(state, val) {
state.showUserCollectionsModal = val
}
}