Skouter mortgage estimates. Web application with view written in PHP and Vue, but controller and models in Go.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

20 lines
337 B

  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>