Skouter mortgage estimates. Web application with view written in PHP and Vue, but controller and models in Go.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

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