Ref
自动解包
-
watch
直接接受Ref作为监听对象,在回调中解包
const counter = ref(0)
watch(counter, count => {
console.log(count) // same as `counter.value`
})
-
在模板中自动解包
-
reactive
解包
import { ref, reactive } from 'vue'
const foo = ref('bar')
const data = reactive({ foo, id: 10 })
data.foo // 'bar'
-
unref()
获取ref
值,不为ref
时直接返回
重复使用已有Ref
将已有ref
传递给’ref()'函数,会返回原有ref
const foo = ref(1) // Ref<1>
const bar = ref(foo) // Ref<1>
foo === bar // true
/**********************************/
function useFoo(foo: Ref<string> | string) {
// 不需要额外操作
const bar = isRef(foo) ? foo : ref(foo)
// 与上面的代码等效
const bar = ref(foo)
/* ... */
}
Ref
组成的对象优点
- 可直接结构
Ref
使用 - 想自动解包时可使用
reactive
转换为对象
import { ref, reactive } from 'vue'
function useMouse() {
return {
x: ref(0),
y: ref(0)
}
}
const { x, y } = useMouse() // 解构
const mouse = reactive(useMouse()) // 转换为对象
mouse.x === x.value // true
类型安全的Provide/Inject
使用Vue提供的InjectionKey<T>
类型工具在不同上下文*享类型
// context.ts
import {InjectionKey} from 'vue'
export interface UserInfo{
id: number
name: string
}
export const injectKeyUser:InjectionKey<UserInfo> = Symbol()
// parent.vue
import {provide} from 'vue'
import {injectKeyUser} from './context'
export default {
setup(){
provide(injectKeyUser,{
id:'7', // 类型错误
name:'aan'
})
}
}
// child.vue
import {inject} from 'vue'
import {injectKeyUser} from './context'
export default {
setup(){
const user = inject(injectKeyUser)
if(user){
console.log(user.name) // aan
}
}
}
状态共享(vuex) vue3中天然支持
- 组合式api,不支持
ssr
//share.ts
import {reactive} from 'vue'
export const state = reactive({
foo:1,
bar:'bar'
})
// A.vue
import {state} from './share.ts'
state.foo=2
// B.vue
import {state} from './share.ts'
console.log(state.foo) // 2
- 兼容ssr共享
使用provide
和inject
共享状态
export const myStateKey: InjectionKey<MyState>=Symbol()
export function creatMyState(){
const state={
//...
}
return {
install(app:App){
app.provide(myStateKey,state) // 注入
}
}
}
export function useMyState():MyState{
return inject(myStateKey)
}
// main.ts
// 全局注入
const app = createApp(App)
app.use(createMyState())
// A.vue
// 任何组件中使用获得状态对象
const state = useMySate()
相关文档
可组合的 Vue - VueConf China 2021