AuthSessionSuccess.vue 337B

123456789101112131415
  1. <script setup>
  2. import { computed } from 'vue'
  3. import { usePage } from '@inertiajs/inertia-vue3'
  4. const status = computed(() => usePage().props.value.status)
  5. </script>
  6. <template>
  7. <CRow class="justify-content-center">
  8. <CCol md="8">
  9. <CAlert v-if="status" color="success">{{ status }}</CAlert>
  10. </CCol>
  11. </CRow>
  12. </template>