Component Registration | Vue.js
vuejs.org › guide › componentsvue <script> import ComponentA from './ComponentA.vue' export default { components: { ComponentA } } </script> <template> <ComponentA /> </template> For each property in the components object, the key will be the registered name of the component, while the value will contain the implementation of the component.
Quick Start | Vue.js
vuejs.org › guide › quick-startMake sure you have an up-to-date version of Node.js installed, then run the following command in your command line (without the > sign): > npm init vue@latest This command will install and execute create-vue, the official Vue project scaffolding tool.