Code: Select all
import Child from "Child.vue";
// open modal when button clicked
Code: Select all
import { ref } from "vue";
const openModal = ref(false);
example
Code: Select all
import Child from "Child.vue";
// open modal when button clicked
Code: Select all
import { ref } from "vue";
const openModal = ref(false);
example