React 18 => Vue 3 (2023年7月4日)
依赖注入
Prop 逐级透传问题
vue: provide 和 inject
react: context
- 创建 context
import { createContext } from 'react';
export const LevelContext = createContext(1);
1
2
3
- 使用 Context
import { useContext } from 'react';
import { LevelContext } from './LevelContext.js';
1
2
- 提供 context