I am trying to get the canvas element which is inside a template of a component, found great documentations for vuejs1 but not for vuejs2 where "ref" is the only w
You can use $nextTick() function, code inside $nextTick() will run after DOM update.
this.$nextTick(function () { console.log(this.$refs.ANY_COMPONENT_REF) })