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
3 Answers
Reset to default 5One 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