[Vuejs]-Changing @click event to occur on page load instead in Vue

1👍

You should use the mounted lifecycle hook in your main vue instance. This function is called when the component is rendered to the document for the first time. You can read more here.

Leave a comment