home.vue 321B

12345678910111213141516171819
  1. <script setup>
  2. import { ref } from 'vue'
  3. import { Link } from '@inertiajs/inertia-vue3'
  4. const vue = ref(3)
  5. </script>
  6. <template>
  7. <h1>Hello <span class="lv">Laravel</span> Vue {{ vue }}</h1>
  8. <Link :href="route('about')">To page About</Link>
  9. </template>
  10. <style lang="scss" scoped>
  11. .lv {
  12. color: #eb4432;
  13. }
  14. </style>