home.vue 390B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <div>
  3. <h1>Hello <span class="lv">Laravel</span> Vue {{ vue }}</h1>
  4. <Link :href="$route('about')">To page About</Link>
  5. </div>
  6. </template>
  7. <script>
  8. import { Link } from '@inertiajs/inertia-vue'
  9. export default {
  10. components: {
  11. Link,
  12. },
  13. data() {
  14. return {
  15. vue: 2,
  16. }
  17. },
  18. }
  19. </script>
  20. <style lang="scss" scoped>
  21. .lv {
  22. color: #eb4432;
  23. }
  24. </style>