Open cossack910 opened 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>
公式 https://ja.vuejs.org/guide/essentials/reactivity-fundamentals.html
refと使い分けがよくわからん
オブジェクトをリアクティブに監視し、そのプロパティの変更を検出して自動的に再レンダリングする