4👍
✅
The code inside created block will be only called once when the vue instance is created, thats why you are seeing log : On Vue created
only once.
Why are you see Start called
on each key pressed: because you have registered this.start
on document.onkeydown, so on each key press, this.start
will get executed.
Source:stackexchange.com