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.

home.vue 340 B

1 yıl önce
1 yıl önce
1 yıl önce
1 yıl önce
1 yıl önce
1234567891011121314151617181920
  1. <template>
  2. <div id="home" class="page">
  3. <h2>Welcome, {{user.firstName + " " + user.lastName}}</h2>
  4. <section class="announce">
  5. <h3>Announcements</h3>
  6. </section>
  7. <section>
  8. <div><span>Subscription : {{user.status}}</span> <button>UPGRADE</button></div>
  9. </section>
  10. </div>
  11. </template>
  12. <script>
  13. export default {
  14. props: ['user'],
  15. }
  16. </script>