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>