What is Vue


Vue.js

Vue.js is an open-source model–view–viewmodel JavaScript framework for building user interfaces and single-page applications. It was created by Evan You, and is maintained by him and the rest of the active core team members coming from various companies such as Netlify and Netguru.

Approachable

Already know HTML, CSS and JavaScript? Read the guide and start building things in no time!

Versatile

An incrementally adoptable ecosystem that scales between a library and a full-featured framework.

Performant

20KB min+gzip Runtime Blazing Fast Virtual DOM Minimal Optimization Efforts

A simple Vue Component

Here is a simple Hello World component made using a dynamic variable:

<template>
  <div>
    <h1>Hell there !</h1>
    <p>This is a simple vue component</p>
  </div>
</template>
<script>

export default {
  data() {
    return {
      name: "Dude"
    };
  },
};
</script>

Tutorials

Check out more on the official Vue website.

Also, you can check out the official Vue Tutorials.