Skouter mortgage estimates. Web application with view written in PHP and Vue, but controller and models in Go.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 
 

21 行
340 B

  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>