19 lines
385 B
Vue
19 lines
385 B
Vue
<template>
|
|
<div v-if="aprobado" class="notification is-warning has-text-centered">
|
|
Tu pedido fue <strong>aprobado</strong>, por lo que no puede ser modificado
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { mapState } from "vuex";
|
|
|
|
export default {
|
|
name: 'CartelPedidoAprobado',
|
|
computed: {
|
|
...mapState('pedido',["aprobado"]),
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
</style>
|