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.
 
 
 
 
 
 

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