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.

home.vue 239 B

2 years ago
2 years ago
2 years ago
2 years ago
1234567891011121314151617
  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. </div>
  8. </template>
  9. <script>
  10. export default {
  11. props: ['user'],
  12. }
  13. </script>