cossack910 / CRMSystem

Laravel10 + inertia + vue
0 stars 0 forks source link

reactive #9

Open cossack910 opened 1 year ago

cossack910 commented 1 year ago

オブジェクトをリアクティブに監視し、そのプロパティの変更を検出して自動的に再レンダリングする

<script setup>
import { reactive } from "vue";
import { router } from "@inertiajs/vue3";
const form = reactive({
    title: null,
    content: null,
});
const submitFunction = () => {
    router.post("/inertia", form);
};
</script>
cossack910 commented 11 months ago

公式 https://ja.vuejs.org/guide/essentials/reactivity-fundamentals.html

refと使い分けがよくわからん