What is Vue.js?

Vue is one of the progressive framework for building user interfaces. Unlike other monolithic frameworks in competition, Vue.js is crafted from scratch to be incrementally adoptable. The core library of Vue.js is focused on the view layer only, which gives Vue.js a flexibility for smooth integration with other libraries or any of your existing projects. Another advantage of using Vue.js is it’s capability of handling complex single page applications together with compatible modern tools.

If you’re into Front-End Development & curious to know that how Vue.js is better than it’s other rivals/libraries/frameworks, then please checkout it’s comparison with other frameworks for better understanding.

For proceeding further in Vue.js, you should have intermediate level knowledge of HTML, CSS, and JavaScript. If you are totally new to Front-End Development, then it is not recommended to dive right into Vue.js framework as your first step. It would be helpful for you to understand easily about Vue.js once you grab the basic knowledge about HTML, CSS, & JavaScript first. Once you are done with that then you can come back & start Vue.js with a bang.

The best way to start with Vue.js is to go through a simple Hello World!! example or you can create an index.html file and include Vue.js as shown below:

<!-- production version is optimized for speed & size -->
<script src="https://cdn.jsdelivr.net/npm/vue"></script>

or:

<!-- development version includes helpful console warnings -->
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>

To start learning Vue.js from scratch, it’s better that you should go through Vue.js-Installation post to know about more options of installing Vue.js locally. Note: If you are just a beginner then better don’t start with vue-cli until you are familiar with build tools based on Node.js.

Add Comment

Required fields are marked *. Your email address will not be published.