模块“vue”没有导出成员“reactive”

Bin*_* Ho 5 javascript package.json vuejs3

我正在使用"vue": "^3.0.0"并尝试使用Reactivity in Depthvue 中的一些。但出现错误

Module '"vue"' has no exported member 'reactive'
Module '"vue"' has no exported member 'ref'
Run Code Online (Sandbox Code Playgroud)

此处的文档:https ://v3.vuejs.org/guide/reactivity.html#what-is-reactivity

更多详细信息package.json

"vue-class-component": "^8.0.0-0",
"vue-property-decorator": "^9.1.2",
...
"@vue/compiler-sfc": "^3.0.0",
Run Code Online (Sandbox Code Playgroud)

在此输入图像描述

Mic*_*evý 5

您的依赖项之一与 Vue 3 不兼容 - 需要 Vue 2。因此您已经安装了两个版本。

您可以尝试执行npm explain vue以找出它是哪一个...