文章分类 -  react

react nextjs
nextjs登录授权之next-auth
摘要:安装next-auth npm install next-auth 配置pages/_app.js 添加SessionProvider让所有页面均能获取到session数据 import { SessionProvider } from 'next-auth/react' export defaul 阅读全文
posted @ 2021-12-25 16:23 吞天泡泡龙 阅读(6596) 评论(1) 推荐(0)
react17/vue3基础hooks使用对比
摘要:创建响应式数据 react:useState/useReducer vue:ref/reactive 使用: useState const testState = useState(false) const test = testState[0] const setTest = testState[ 阅读全文
posted @ 2021-12-16 16:55 吞天泡泡龙 阅读(602) 评论(0) 推荐(0)