What is vue-cli? And what is its relationship with the backend?-zhihu

Vue CLI is a complete system for rapid development based on Vue.js, providing:

  • The interactive project scaffolding achieved through @vue/cli.
  • Prototype development achieved through @vue/cli + @vue/cli-service-global without zero configuration.
  • A runtime dependency (@vue/cli-service), which is:
    • Upgradeable;
    • Built with Webpack and a reasonable default configuration.
    • It can be configured through the configuration file within the project.
    • Plugins can be extended.
  • A rich collection of official plugins, integrating the best tools from the frontend ecosystem.
  • A fully graphical user interface for creating and managing Vue.js projects.

Vue CLI aims to standardize the foundational tools in the Vue ecosystem. It ensures that various build tools can seamlessly connect based on smart default configurations, allowing you to focus on writing your application rather than spending days agonizing over configuration issues. At the same time, it provides flexibility for each tool to adjust its configuration without ejecting.

That’s Vue-cli, used to build scaffolding for Vue.js projects, automatically creating a default basic Vue project structure, and has nothing to do with the backend.

Read more here: Source link