Skouter mortgage estimates. Web application with view written in PHP and Vue, but controller and models in Go.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 
 

36 lignes
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>