Koha/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/Dialog.vue
Jonathan Druart 5537c81311
Bug 32030: Store current_view and messages
Signed-off-by: Jonathan Field <jonathan.field@ptfs-europe.com>

Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
2022-11-08 09:43:47 -03:00

16 lines
No EOL
428 B
Vue

<template>
<div class="dialog message" v-if="message">{{ message }}</div>
<div class="dialog alert" v-if="error">{{ error }}</div>
</template>
<script>
import { storeToRefs } from "pinia"
import { useMainStore } from '../../stores/main';
export default {
setup(){
const mainStore = useMainStore()
const { message, error } = storeToRefs(mainStore)
return { message, error }
}
};
</script>