import { defineComponent, ref } from "vue"; export default defineComponent({ setup() { const input = ref(""); return { input, }; }, }); ...
確定! 回上一頁