I am in debug mode of chrome. I clicked somewheere, went to chrome console and wrote this
this.$parent
I want to get parent object variables. but it shows:
VueComponent {_uid: 641, _isVue: true, $options: {…}, _renderProxy: Proxy, _self: VueComponent, …}
$attrs: (...)
$children: [VueComponent]
It goes like this. I need to see all variables. I need to use a variable from parent so i try to call it. First i need to see where it is.
So, I will need to open all those variables with three dots (...)
I can click but there are hundreds of them. SO best way is printing.
How can I achieve this?