AppModalAlert.vue 460B

12345678910111213141516171819
  1. <script setup>
  2. import { inject } from 'vue'
  3. const { modalAlertVisible, toggleModalAlert } = inject('defaultLayout')
  4. </script>
  5. <template>
  6. <CModal alignment="center" backdrop="static" :visible="modalAlertVisible">
  7. <CModalBody>
  8. <slot />
  9. </CModalBody>
  10. <CModalFooter>
  11. <CButton type="button" class="btn btn-ghost-primary" @click="toggleModalAlert">Tutup</CButton>
  12. <slot name="footer" />
  13. </CModalFooter>
  14. </CModal>
  15. </template>