Questions tagged [vue-devtools]

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

Relevant Links:

79 questions
1
vote
0 answers

Vue: Maximum call stack size exceeded at Function.[Symbol.hasInstance]

This error only occurs when I open Vue.js devtools. I've seen a few explanations for errors like this, I'm wondering how I can go about finding the location of such culprit within a large code base. The possible explanations are: Computed…
Dylan Landry
  • 1,150
  • 11
  • 27
1
vote
1 answer

In vue3+typescript devtools property does not working

In Vue3+typescript, Property "devtools" does not existed on type "AppConfig" But, APIDoc was guide to this. app.config.devtools = true; What should I do? T_T
byungster
  • 89
  • 6
1
vote
1 answer

Run globally installed node module from electron app

I am trying to startup vue-devtools from within my app but I am getting an error: Uncaught Exception: Error: spawn vue-devtools ENOENT     at Process.ChildProcess._handle.onexit     at onErrorNT     at processTicksAndRections I am using…
Get Off My Lawn
  • 34,175
  • 38
  • 176
  • 338
1
vote
3 answers

Why does my vuex state change on changing my component level state even if I have not binded the vuex state to any html input element?

I have a vue store which has the following store.js import Vue from 'vue' import Vuex from 'vuex' const state = { supplementStore: {} } const actions = { getDataFromApi ({dispatch, commit}) { APIrunning.then(response => { …
Keith M
  • 421
  • 1
  • 8
  • 18
1
vote
2 answers

Nativescript vue devtools does not connect

it seems a week or so ago, nativescript lost the ability to talk to the vue devtools. See this issue on github. Run this repo to reproduce -- (you will need to change the host variable in main.js to your computer's network address). Here are…
Will P.
  • 8,437
  • 3
  • 36
  • 45
1
vote
0 answers

Use Vue dev tool with Laravel Valet

I have a laravel project running on laravel valet and I can't get the vue dev tool to work on it. Here is what it says: Vue.js is detected on this page. Devtools inspection is not available because it's in production mode or explicitly disabled by…
L. Fox
  • 328
  • 1
  • 6
  • 20
0
votes
0 answers

vue3js - why are keys not showing correctly in devtools?

I am having strange problems with a vue3 app and have started to use the vue3 devtools add-in to see what is going on. In one project, I am seeing all the :key values showing as zero: although I am setting these values correctly in the…
quilkin
  • 874
  • 11
  • 31
0
votes
0 answers

How can I turn off Vue Force Dev plugin in production

I have a VueJS (V2) based application, I have Vue Devtools turned off in production however there is a chrome addon called Vue Force Dev available here: https://github.com/hzmming/vue-force-dev that can force dev tools even on production apps. You…
0
votes
1 answer

Vue dev tool display only

i often see only tag in components in vue devtool. If i search a specific component in page, it display like you see on picture below right sight. When i reload page a few times it appears all the tree but in next reload it disappear…
0
votes
0 answers

Ubuntu 22.04 cannot install chrome vue devtools

OS: Ubuntu 22.04 Chrome: Version 108.0.5359.71 (Offizieller Build) (64-Bit) Using the link, recommend by devtools.vue.js, the provided resource does not offer any install button/link. Question: How to install on ubuntu 22.04 vue devtools for…
rammi22
  • 271
  • 1
  • 11
0
votes
1 answer

Vue devtools can't open component on editor with macbook m1

I installed PhpStorm-2022.3-aarch64.dmg. Downloaded on official website JetBrains. I click button "Open in editor" on vue devtools. Exception 2022-12-10 22:33:20.212 phpstorm[5378:39479] allVms required 1.8*,1.8+ 2022-12-10 22:33:20.215…
0
votes
0 answers

How to hide functional components (JSX) in vue devtools?

i'm currently using JSX for Vue component, but currently, the devtool would show a very ugly nested hashed functional component tree like this, is there any way to avoid this? As far as I know, Vue devtools doesn't provide us an option to hide these…
Rim
  • 168
  • 3
  • 9
0
votes
0 answers

Do Vue Developer plugin (browser) access every object declared in code with property "state"?

I have a code written in vue.js . i have mutated my declared objects nature to make them "ENUM". so in that code, I have written a condition if object is accessed with some unexpected property it throws an error with name of that unexpected…
Izuna894
  • 41
  • 4
0
votes
0 answers

vue.js dynamic component renders twice with itself as child component

I have a component proxy which renders components using vue.js build in dynamic component. The instanceName is the component to render. The data is the relevant data for the component to render.