Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Component tree not supported

How to solve the following errors in cli app?

backend.js:3638 App with id null not found

Is it bug in beta?

enter image description here

in console:

enter image description here

main.js (code)

import Vue from 'vue'
import App from './App.vue'
import router from './router'
import store from './store'
import axios from 'axios'
import DataTable from 'laravel-vue-datatable';
// import jQuery from 'jquery';
// window.$ = window.jQuery = jQuery;
import 'popper.js';
import 'bootstrap';

import './assets/app.scss';
import './assets/styles/bootstrap/dist/css/bootstrap.min.css';
import './assets/styles/custom.css';
import './assets/styles/themify-icons.css';
import './assets/styles/animate.css';
import './assets/styles/sublime.css';

// import './assets/styles/bootstrap/dist/js/bootstrap.min.js'

require('@/store/subscriber')

axios.defaults.baseURL = 'http://p3backend.test/api/'

Vue.config.productionTip = false

Vue.use(DataTable);
Vue.component('pagination', require('laravel-vue-pagination'));

store.dispatch('auth/attempt', localStorage.getItem('token')).then(() => {
  new Vue({
    router,
    store,
    render: h => h(App)
  }).$mount('#app')
})

Updated: I have 2 profiles in my chrome, on second profile vue-dev-tool is working fine :( tried to clean cache but still the same issue, the browser is up-to-date as Version 84.0.4147.89 (Official Build) (64-bit)

like image 876
zarpio Avatar asked Mar 03 '23 06:03

zarpio


1 Answers

This problem is in the Beta version of vue.js devtools!

try: https://chrome.google.com/webstore/detail/vuejs-devtools/nhdogjmejiglipccpnnnanhbledajbpd

Steps:

  1. Uninstall/remove the current chrome extension.
  2. Install the new version.
  3. Happy using Vue.js devtools again :)
like image 155
soroush Avatar answered Mar 06 '23 20:03

soroush