All Questions
7 questions
1
vote
0
answers
144
views
How to use a vue 2 dependency that uses Vue.extend() in a nuxt 3 app?
I am working on a nuxt 3 application and in this repo I am npm installing a private package that uses vue 2 under the hood. I install this package and create a plugin and register it in the nuxt....
0
votes
1
answer
894
views
How to solve vue 3 compatible packages problem?
I'm trying to update my packages with npm.
I want to use vue 3 but there are some problems in these 3 packages:
@vue/composition-api
vue-class-component
vue-property-decorator
I cannot install them.
...
0
votes
1
answer
726
views
Vue 3 Typescript watcher not responding after passing prop through two components
I've got three components in my vue 3 app (using typescript and the composition api)
I'm reading a string value in the first component passing it throught a modal (2nd component) to a 3rd one.
Now the ...
1
vote
1
answer
616
views
Should I be concerned about NPM vulnerabilities when using Vue?
I just installed @Vue-cli and I decided to create my first project using Vue3.
After running vue create hello-world and it finished building the project, the cli said
7 moderate severity ...
2
votes
1
answer
59
views
What packages do I need to install to accomplish a "vue build <src path> --config <config file path> --dist <dist location> --prod --lib" command?
I've forked an old Vue.js package that has some issues in it (v-money) and made the necessary changes to accomplish what I need. But now when I try to build using the package's original method, I'm ...
-1
votes
1
answer
106
views
Failed to install Vue.js Cli
node -v: v8.10.0
npm -v: 3.5.2
While running npm install -g @vue/cli or sudo npm install -g @vue/cli I get the error below and failed to download Vue CLI
1
vote
1
answer
2k
views
VueJS Watcher is not triggered while watching deep object changes
I got a codesandbox that reproduces my problem: codesandbox example watcher not triggering.
I am working on a component that relies on an object with data that can be dynamically added to the object, ...