Vue3 の composable の関数で Missing return type on function が表示されます。その警告の通り戻り値の型を定義する必要があると思うのですが、どのような型を定義すれば良いのか分からないので教えて下さい。
TypeScript
1import { reactive} from 'vue' 2import { SignIn } from '@/types/SignIn' 3 4export const useSignIn = () => { 5 const form = reactive<SignIn>({ 6 email: '', 7 password: '' 8 }) 9 10 const signIn = async () => { 11 console.log('SignIn') 12 } 13 14 return { 15 form, 16 signIn 17 } 18} 19
あなたの回答
tips
プレビュー