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

20 行
337 B

  1. <template>
  2. <section>
  3. <h4 v-if="status == 'succeeded'">Payment succeeded!</h4>
  4. <h4 v-if="status == 'processing'">Payment still processing. Try again later.</h4>
  5. </section>
  6. </template>
  7. <script setup>
  8. import { ref, onMounted } from "vue"
  9. const props = defineProps(["status"])
  10. </script>
  11. <style>
  12. h4 {
  13. text-align: center;
  14. }
  15. </style>