cossack910 / CRMSystem

Laravel10 + inertia + vue
0 stars 0 forks source link

v-bind #3

Open cossack910 opened 1 year ago

cossack910 commented 1 year ago

Linkタグの場合

inertiaTest.vue

<script setup>
import { Link } from "@inertiajs/vue3";
</script>

<template>
    testets<br />
    <a href="/">a tag</a> <br />
    <Link href="/">Link経由です</Link> <br />
    <Link :href="route('inertia.index')">name付きです</Link> ←これ
</template>

web.phpで名前付したrouteをLinkコンポーネントにv-bind

cossack910 commented 1 year ago

データ付きでコントローラーに渡す例

https://github.com/cossack910/CRMSystem/blob/7009555b65e00455010985576aea7b206b650423/crmsystem/resources/js/Pages/inertiaTest.vue#L14