import useSWR from 'swr' function Profile() { const { data, error, isValidating, mutate } = useSWR('/api/user', fetcher) if (error) return ...
確定! 回上一頁