Skouter mortgage estimates. Web application with view written in PHP and Vue, but controller and models in Go.
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
 
 

36 řádky
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>