Skouter mortgage estimates. Web application with view written in PHP and Vue, but controller and models in Go.
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 
 

36 satır
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>