This repository has been archived on 2025-02-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
iu-quiz-app/store/toast.js
2022-10-17 19:26:56 +02:00

14 lines
284 B
JavaScript

export const state = () => ({
content: '',
color: '',
timeout: 5000
})
export const mutations = {
showMessage (state, {content, color, timeout}) {
state.content = content
state.color = color
if (timeout) state.timeout = timeout
else state.timeout = 5000
}
}