ffplayout/stores/index.ts
2023-01-11 13:41:22 +01:00

19 lines
390 B
TypeScript

import { defineStore } from 'pinia'
export const useIndex = defineStore('index', {
state: () => ({
showAlert: false,
alertVariant: 'alert-success',
alertMsg: '',
}),
getters: {},
actions: {
resetAlert() {
this.showAlert = false
this.alertVariant = 'alert-success'
this.alertMsg = ''
},
},
})