I have a template like this:
<template>
<div>{{hello}}</div>
</template>
<script>
export default {
data() {
hello: "Hello World!",
secret: "The answer is 42"
}
}
</script>
How can I get, and manipulate the value of secret
from the Chrome debugging console?
I have installed the Vue extension which allows me to look at my component and see the variables. What I would like to do is to get these variables and manipulate them.
Is this possible?