Skouter mortgage estimates. Web application with view written in PHP and Vue, but controller and models in Go.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

completed.vue 337 B

12345678910111213141516171819
  1. <template>
  2. <section>
  3. <h4 v-if="status == 'succeeded'">Payment succeeded!</h4>
  4. <h4 v-if="status == 'processing'">Payment still processing. Try again later.</h4>
  5. </section>
  6. </template>
  7. <script setup>
  8. import { ref, onMounted } from "vue"
  9. const props = defineProps(["status"])
  10. </script>
  11. <style>
  12. h4 {
  13. text-align: center;
  14. }
  15. </style>