0.0.4 • Published 6 years ago

voz v0.0.4

Weekly downloads
3
License
ISC
Repository
github
Last release
6 years ago

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.

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.

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago