I am writing a vue js app.
When I console log the data from the vue instance I see it with it's getters and setters which are not relevant to me.
var vm = new vue({
data () { return { testData: { stuff: 'some stuff' } }; },
methods: {
log () {
console.log( this.testData );
}
}
})
You can see the above example here.
This is what I get in the console (very dirty):
I can remove the setters before logging but that seems to be overkill for a simple log.
Vue used to have a built in $log
method for this purpose, but it has been removed in v2.
Does anyone have any idea how to filter the data from the getters/setters before logging?
I am writing a vue js app.
When I console log the data from the vue instance I see it with it's getters and setters which are not relevant to me.
var vm = new vue({
data () { return { testData: { stuff: 'some stuff' } }; },
methods: {
log () {
console.log( this.testData );
}
}
})
You can see the above example here.
This is what I get in the console (very dirty):
I can remove the setters before logging but that seems to be overkill for a simple log.
Vue used to have a built in $log
method for this purpose, but it has been removed in v2.
Does anyone have any idea how to filter the data from the getters/setters before logging?
Share Improve this question edited May 23, 2017 at 12:18 CommunityBot 11 silver badge asked Nov 30, 2016 at 8:31 hitautodestructhitautodestruct 20.9k14 gold badges75 silver badges95 bronze badges2 Answers
Reset to default 8One of the following should do the trick:
log: function(d) {
console.log(Object.assign({}, this.form));
}
// if you have jQuery
log: function(d) {
console.log($.extend({}, this.form));
}
// what $log does
log: function(d) {
console.log(JSON.parse(JSON.stringify(this.form)));
}
// ES6 Destructuring
log: d => ({ ...d })
You may do that:
console.log(JSON.parse(JSON.stringify(this.testData)));
new Vue({
el:"#app",
data:{
testData: {
stuff: 'some stuff',
something: 'some thing'
}
},
methods:{
log(){
console.log(JSON.parse(JSON.stringify(this.testData)));
}
}
})
<script src="https://unpkg./vue/dist/vue.js"></script>
<div id="app">
<button v-on:click="log">log</button>
</div>