export default { name: "CookbookForm", setup() { const { ref } = Vue; const title = ref(""); const description = ref(""); const nature = ref(""); const logs = ref([""]); const who = ref(""); return { title, description, nature, logs, who }; }, template: `
`, };