show error message on wrong requests
This commit is contained in:
parent
7e4b5219ab
commit
a439d15754
@ -1,9 +1,37 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<nuxt />
|
<nuxt />
|
||||||
|
<b-alert
|
||||||
|
:show="showErrorAlert"
|
||||||
|
dismissible
|
||||||
|
variant="danger"
|
||||||
|
class="status-alert"
|
||||||
|
@dismissed="showErrorAlert=!showErrorAlert"
|
||||||
|
>
|
||||||
|
<p>{{ ErrorAlertMessage }}</p>
|
||||||
|
</b-alert>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { mapState } from 'vuex'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
computed: {
|
||||||
|
...mapState(['ErrorAlertMessage']),
|
||||||
|
|
||||||
|
showErrorAlert: {
|
||||||
|
get () {
|
||||||
|
return this.$store.state.showErrorAlert
|
||||||
|
},
|
||||||
|
set () {
|
||||||
|
this.$store.commit('UPDATE_SHOW_ERROR_ALERT', false)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
html, body {
|
html, body {
|
||||||
font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI',
|
font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI',
|
||||||
@ -24,4 +52,15 @@ html, body {
|
|||||||
a {
|
a {
|
||||||
color: #c4c4c4;
|
color: #c4c4c4;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.status-alert {
|
||||||
|
position: fixed;
|
||||||
|
z-index: 1001;
|
||||||
|
top: 55px;
|
||||||
|
right: 10px;
|
||||||
|
width: 400px;
|
||||||
|
max-width: 500px;
|
||||||
|
height: 100px;
|
||||||
|
max-height: 100px;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -1 +1,15 @@
|
|||||||
export const strict = false
|
export const strict = false
|
||||||
|
|
||||||
|
export const state = () => ({
|
||||||
|
showErrorAlert: false,
|
||||||
|
ErrorAlertMessage: ''
|
||||||
|
})
|
||||||
|
|
||||||
|
export const mutations = {
|
||||||
|
UPDATE_SHOW_ERROR_ALERT (state, show) {
|
||||||
|
state.showErrorAlert = show
|
||||||
|
},
|
||||||
|
UPDATE_ERROR_AERT_MESSAGE (state, message) {
|
||||||
|
state.ErrorAlertMessage = message
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user