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.
 
 
 
 
 
 

36 lines
531 B

  1. <template>
  2. <section>
  3. <p>
  4. Your payment information is missing or no longer valid, please update your billing details.
  5. </p>
  6. <button @click="() => $emit('ok')">OK</button>
  7. </section>
  8. </template>
  9. <script setup>
  10. import { ref } from "vue"
  11. const emits = defineEmits(['ok'])
  12. </script>
  13. <style scoped>
  14. form > div {
  15. display: flex;
  16. justify-content: space-between;
  17. margin: 10px;
  18. position: relative;
  19. }
  20. button {
  21. margin: auto;
  22. min-width: 90px;
  23. display: block;
  24. }
  25. span.error {
  26. margin: 10px auto;
  27. color: darkred;
  28. }
  29. </style>