11 lines
251 B
Vue
11 lines
251 B
Vue
|
<template>
|
||
|
<div v-show="this.$root.pedido.aprobado" class="notification is-warning has-text-centered">
|
||
|
Tu pedido fue <strong>aprobado</strong>, por lo que no puede ser modificado
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
</style>
|