What is the difference of the vue for the vue-cli?

-2

What is the difference between the VUE.JS for the VUE-cli. Is there a difference? I honestly could not find the difference.

    
asked by anonymous 04.01.2019 / 21:19

2 answers

3

Vue-cli is a tool for generating applications / projects. Running vue-cli will prompt you to choose tools to use in the project that vue-cli will create, and depending on what you choose you have a complete directory structure, all configured and ready to develop the Vue.js application

Vue.js is a JavaScript library, (almost) a (

04.01.2019 / 21:48
2

VueJS is a front-end framework that facilitates and accelerates the development for web applications, it is written in Javascript and has a great community.

Vue CLI is a command line tool made by the Vue community to make it even easier to start a new Vue application, with it we can generate our application from official templates (including webpack integration, etc.), reducing the environment setup time.

Font

    
04.01.2019 / 22:29