Vue Quick Tips: Globally Registering Vue Components

When we use vue, it's common to register a component within another component. In this tutorial, we're going to look at how you can globally register a component in Vue, so you never have to reference it in your component again - instead, you can use it straight in your <template> tag. 

If you are new to Vue, check out our guide on creating your first Vue application before starting.