DEV Community

Cover image for Interactive websites with vue.js
bluepaperbirds
bluepaperbirds

Posted on

Interactive websites with vue.js

JavaScript isn't going anywhere soon, and these days JavaScript is used to make all kinds of things including Web Apps. Who would have thought that the web browser became a kind of operating system?

What is Vue.js?

Vue.JS is javascript framework that inspired by Angular. You can find some Vue examples here.

If you have a single page web page, you can make it interactive using Vue.js.

You can make all kind of on page interacts with Vue and even small apps that don't require a back-end. In fact one of the things you can do is interact with an API and present the data on a single page (as an app) with Vue.js.

Pretty cool right? or do you prefer React or another framework when working with the web?

Why Vue.js?

There are several reasons why you could use vue.js

First it's approachable. If you already know HTML, CSS and JavaScript you can build things in no time!

It's scalable and it has a small footprint which is important for page speed. It has a 20KB min+gzip Runtime

Top comments (0)