When making a new Vue app with the help of the Vue CLI from the command line, we use the vue create command. We are then taken through a number of steps and prompts that we need to choose, so that our app is properly configured. What we are actually doing, among other things, is choosing which Vue plugins will end up being used in our app.
Plugins are a way to add functionality to our Vue projects. Some plugins are more complex than others; they sometimes have their own prompts that appear during installation. Our Vue app's configurations, that is, the underlying code, will reflect our choices. The way our app is set up will be based on the answers we provide to these installation prompts.
All the official npm packages of a project are scoped with the @ symbol, followed by the project name. Thus, official Vue plugins, built by the Vue maintainers...