最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Module '"vue"' has no exported member 'reactive' - Stack Overflow

programmeradmin2浏览0评论

I am using "vue": "^3.0.0" and trying to use some Reactivity in Depth from vue. But got the error

Module '"vue"' has no exported member 'reactive'
Module '"vue"' has no exported member 'ref'

Documentation here: .html#what-is-reactivity

More detail on package.json

"vue-class-ponent": "^8.0.0-0",
"vue-property-decorator": "^9.1.2",
...
"@vue/piler-sfc": "^3.0.0",

I am using "vue": "^3.0.0" and trying to use some Reactivity in Depth from vue. But got the error

Module '"vue"' has no exported member 'reactive'
Module '"vue"' has no exported member 'ref'

Documentation here: https://v3.vuejs/guide/reactivity.html#what-is-reactivity

More detail on package.json

"vue-class-ponent": "^8.0.0-0",
"vue-property-decorator": "^9.1.2",
...
"@vue/piler-sfc": "^3.0.0",

Share Improve this question edited Mar 29, 2023 at 17:32 Dave Mackey 4,43221 gold badges83 silver badges145 bronze badges asked Mar 20, 2021 at 10:06 Binh HoBinh Ho 5,0331 gold badge39 silver badges44 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 5

One of your dependencies is not patible with Vue 3 - requiring Vue 2. So you have installed both versions.

You can try execute npm explain vue to find out which one is it...

For whoever es across this question, is using pnpm and running into this issue with all Vue exports, like:

Problems:
TS2305: Module '"vue"' has no exported member 'defineComponent'.
TS2305: Module '"vue"' has no exported member 'Component'.
TS2305: Module '"vue"' has no exported member 'Ref'.
TS2305: Module '"vue"' has no exported member 'ref'.

I noticed I had "preserveSymlinks": true in my tsconfig.json, removing it (or setting it to false) cleared the errors.

// tsconfig.json
{
  // ...
  "pilerOptions": {
    // ...
    "preserveSymlinks": false // no more errors ✅
  }
}

Using pnpm, I was able to fix this by adding two dependencies:

pnpm add @vue/runtime-core
pnpm add @vue/runtime-dom
发布评论

评论列表(0)

  1. 暂无评论