Skouter mortgage estimates. Web application with view written in PHP and Vue, but controller and models in Go.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1 年之前
1 年之前
1 年之前
1 年之前
1 年之前
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>