Vue Ts 提示 ‘cannot find name Ref’ 是为什么?
已经安装了 “unplugin-auto-import” 自动导入插件,这种情况还需要手动引入 Ref么?
如下:
import {Ref} from 'vue'const message: Ref < string >= ref("123");
还是单纯的我配置插件配置的有问题。
回答:
如果你是想规定类型的话可以这样写:const message = ref<string>('123')
或者
import type { Ref } from 'vue'const message: Ref<string> = ref('123')
unplugin-auto-import
目前并不能导入类型,可以看一下这个RFC:https://github.com/antfu/unpl...
以上是 Vue Ts 提示 ‘cannot find name Ref’ 是为什么? 的全部内容, 来源链接: utcz.com/p/933375.html