Vue.js Inspector For Mobile Devices

Install & Download:

# NPM
$ npm install vue-inspector --save

Description:

vue-inspector is a basic inspector for Vue.js, focused only in mobile devices. With vue-inspector is possible to execute JavaScript code directly in your mobile browser and get error messages generated at run-time. Also, inspect the data and computed properties inside the components and the root instance.

Features:

  • Works with Vue.js 2
  • Reactive (of course)
  • Instance data and computed properties inspection
  • Integrated JavaScript (basic) console for code execution and messages/errors logging
  • Navigation inside components and their children (with inspection)
  • Responsive and simple UI

Props:

props: {
  isVisible: {
    required: false,
    default: true,
    type: Boolean
  },
  isExpanded: {
    type: Boolean,
    default: false,
    required: false
  },
  isMinimized: {
    required: false,
    type: Boolean,
    default: false
  }
},

Preview:

Vue.js Inspector For Mobile Devices

Add Comment