voz
v0.0.4
Published
Use Voz with Vue.js to manage console.log statements throughout your entire application. You can enable or disable them from your main Vue.js file.
Downloads
2
Maintainers
Readme
- Lead Maintainer: David Roche
Use Voz with Vue.js to manage console.log statements throughout your entire application. You can enable or disable them from your main Vue.js file.
- Post a github issue,
Install
To install via npm,
npm i voz
Quick Example
export default {
name: 'app',
data () {
return {
}
},
mounted(){
var example = 'Hello World'
this.$log(example)
}
}
import Vue from 'vue'
import Voz from 'voz'
//Set visible to true to show console.log statements
//Set visible to false to disable console.log statements
Vue.use(Voz ,{ visible: true })
new Vue({
el: '#app',
render: h => h(App)
})
Contributing
If you feel you can help in any way, be it with bug reporting, documentation, examples, extra testing, or new features feel free to create an issue, or better yet, [submit a Pull Request.