import { InjectionKey, provide, inject } from 'vue'; const key: InjectionKey<string> = Symbol(); provide(key, 'foo') // 提供非字符串值将导致错误 ...
確定! 回上一頁