Questions tagged [vue-devtools]

Questions related to the Chrome and Firefox DevTools extension for debugging Vue.js applications.

Relevant Links:

79 questions
2
votes
1 answer

Where has Vue Devtools's Time Travel Debugging feature gone?

It's been a while since I worked with VueJS (2 or so years ago). I wanted to get back to working on an old VueJS 2.6 app, and I'm having trouble finding the Time Travel Debugging feature of Devtools for Vuex. Here you can see what Time Travel…
Attila Szeremi
  • 5,235
  • 5
  • 40
  • 64
2
votes
1 answer

Calling Vuex action from within another vuex action

I recently migrated to the Vuex store, and I am making a decent amount of progress. But the current challenge I face is calling an action from within another action in Vuex. I am still in the process of learning Vue.js Current versions Vue 3 Vuex…
2
votes
0 answers

unsure what mountrender means in vue profiling

I have the vue-profiling report below: AS you can see mountRender takes an insane amount of time. I want to cut this down. How can I do so? Is there anyway I can see what is taking mountRender so long and what the breakdown is of MountRender.
Juliette
  • 4,309
  • 2
  • 14
  • 31
2
votes
0 answers

How to make manually-added Vue component show up in Vue dev tools?

I'm mouting a component manually, just like docs say: https://v2.vuejs.org/v2/api/#vm-mount var MyComponent = Vue.extend({ template: '
Hello!
' }) // or, render off-document and append afterwards: var component = new…
IT Man
  • 933
  • 3
  • 12
  • 33
2
votes
1 answer

Vue Dev Tools - does not working "Open in Editor" button. How to fix this?

I am trying to setup this feature from tutorial: https://github.com/vuejs/vue-devtools/blob/master/docs/open-in-editor.md but got an error "C:\Users\User\AppData\Local\Programs\Microsoft" не является внутренней или внешней, исполняемой программой…
Skif
  • 1,178
  • 4
  • 14
  • 26
1
vote
1 answer

How do I get refs and computed vars to show up in Vue Devtools when using the Composition API and the Script Setup syntax?

I have a number of variables in one of my components that would go in the data() function or computed: {} section when using Vue's Options API (which I'm more familiar with), but this component is using the Composition API and the