Skouter mortgage estimates. Web application with view written in PHP and Vue, but controller and models in Go.
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 
 
 

20 líneas
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>