question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Build error: "vue"' has no exported member named 'Reactive'. Did you mean 'reactive'

See original GitHub issue

Hello

When I try to build my vue-3 project with npm run build I get the following error:

node_modules/bootstrap-vue-3/dist/components/BToast/plugin.d.ts:1:68 - error TS2724: '"vue"' has no exported member named 'Reactive'. Did you mean 'reactive'?

1 import { Plugin, ComponentPublicInstance, VNode, Ref, ComputedRef, Reactive } from 'vue';

The problem seems to be introduced with bootstrap-vue-3 version 0.1.11.

Issue Analytics

  • State:closed
  • Created a year ago
  • Comments:11 (5 by maintainers)

github_iconTop GitHub Comments

1reaction
snmuheincommented, May 24, 2022

I can suppress the error by adding “skipLibCheck”: true to the tsconfig.json

// tsconfig.json
{
  "compilerOptions": {
    // other settings
    "skipLibCheck": true
  },

}

0reactions
aceofwingscommented, May 25, 2022

I saw that, just now, looks good thanks for the update.

Read more comments on GitHub >

github_iconTop Results From Across the Web

Module '"vue"' has no exported member 'reactive'
One of your dependencies is not compatible with Vue 3 - requiring Vue 2. So you have installed both versions. You can try...
Read more >
Visual Studio build errors: module '"vue"' has no exported ...
Hello all, sample project that has build errors attached. ... '"vue"' has no exported member 'ComponentOptions', cannot find name 'Vue'.
Read more >
Module '"vue"' has no exported member 'ref' - Get Help
Hey, I created NUXT project with typescript and when I am trying to use ref this error pops out. Module '“vue”' has no...
Read more >
npm run errors after cloning Vue 3 repo to a new machine
node_modules/vue/dist/vue"' has no exported member 'reactive'. Did you mean 'Directive'? All of the other errors I can see in the terminal ...
Read more >
[Solved]-Module has no exported Member Vue3-Vue.js
How does one set the favicon to a gif in Vue3 crated via the Vue CLI? How to make exported variables reactive in...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found