vue-devtools

vue-devtools always disabled with nuxt.js

纵饮孤独 提交于 2020-12-30 06:28:14
问题 I am creating a new project using nuxt.js v2.3.0. When i run npm run dev in my idea console everything compiles correctly but when I go to the page I get the following error: Nuxt.js + Vue.js is detected on this page. Devtools inspection is not available because it's in production mode or explicitly disabled by the author. Here is my nuxt.config.js: const pkg = require('./package'); module.exports = { mode: 'spa', dev: true, /* ** Headers of the page */ head: { title: pkg.name, meta: [ {

vue-devtools always disabled with nuxt.js

时光毁灭记忆、已成空白 提交于 2020-12-30 06:27:27
问题 I am creating a new project using nuxt.js v2.3.0. When i run npm run dev in my idea console everything compiles correctly but when I go to the page I get the following error: Nuxt.js + Vue.js is detected on this page. Devtools inspection is not available because it's in production mode or explicitly disabled by the author. Here is my nuxt.config.js: const pkg = require('./package'); module.exports = { mode: 'spa', dev: true, /* ** Headers of the page */ head: { title: pkg.name, meta: [ {

Vue.js devtools not showing

穿精又带淫゛_ 提交于 2020-12-06 06:39:51
问题 Suddenly my Vue.js devtools stopped working. I had it in the chrome for like 2 years (since I started developing Vue.js). Now I can't see devtools in chrome. It happened yesterday just like that - I was using devtools for a while, then I was working on something else and after a while, I noticed something - devtools is away. Even though the extension is saying that devtools works: Why it is not "my" problem: I use it for 2 years with no problem, until now It was working in the morning, then

Vue2 + Vuex Commit Not Committing (without Vue devtools)

荒凉一梦 提交于 2019-12-22 19:01:53
问题 I'm trying to accomplish what should be a basic task with Vuex, but for some reason it's not working, and after searching far and wide, I greatly appreciate any help. What I'm trying to do : Update a list (object) of objects in my store with a new property (object). What's going wrong : Before I even dispatch the action to commit the new object from my component (I'm accessing the action via mapActions), certain properties in any existing objects in the list are updated with the values tied

No Vuex store detected in Vue Dev Tools

此生再无相见时 提交于 2019-12-10 17:53:01
问题 For very specific reasons, I have set the vue dev tools to true in production. Vue.config.devtools = true Am using the following versions: "vue": "^2.5.2" "vuex": "^3.0.1" "vuetify": "^1.0.0" While I can see the components and events, the Vuex store is not detected. I have tried downgrading the vuex version to 2.3.1 and 2.4.x, but it did not help. Here's the link I referred to - https://github.com/vuejs/vue-devtools/issues/405 Note - The store works well, its just that I am not able to view

Vue2 + Vuex Commit Not Committing (without Vue devtools)

帅比萌擦擦* 提交于 2019-12-06 14:29:36
I'm trying to accomplish what should be a basic task with Vuex, but for some reason it's not working, and after searching far and wide, I greatly appreciate any help. What I'm trying to do : Update a list (object) of objects in my store with a new property (object). What's going wrong : Before I even dispatch the action to commit the new object from my component (I'm accessing the action via mapActions), certain properties in any existing objects in the list are updated with the values tied to the inputs/v-models in my component. As my code shows below, I know reactivity with objects is an