我试图
import { ref } from 'vue'; import { onClickOutside } from '@vueuse/core'; import { useRoute } from 'vue-router';
从 vue 包导入任何属性,然后收到此错误。
Cannot find module 'vue-router'. Did you mean to set the 'moduleResolution' option to 'node', or to add aliases to the 'paths' option?对于其他对象我也收到此错误Property 'xxxxxx' does not exist on type '{}'.
我添加了"moduleResolution":"node"编译器选项,然后我也遇到了同样的错误。
如何解决这个错误?
vuejs3 ×1