[Vuejs]-Choosing framework with needed level of flexibility

0👍

Vue.js has a pretty well-structured way for components. You can have the html, css and javascript all managed in one place. For basic examples, see the official documentation at vuejs.org

Once having written the components, it’s kind of intuitive to use and reuse them in our main html file.
Feel free to try it out!

Also, vue is a modular framework, meaning you don’t have to use it’s own routing system etc. for getting started with it’s template engine. It could even run along side other frameworks.

Leave a comment