Differences between vue instance and vue component?

It’s ok to have two instances in the same project, however, you probably don’t want to do that.

A good scenario is to have one main instance to control your app, specially if you are creating a Single Page Application (SPA). Then use as many components as you want.

Components are a great way to reuse code and keep it organized, and, with Vue.js, is very easy to communicate between your components and your “main” Vue instance.

Leave a Comment

tech