Top 1,000 Features Creators Resources Blog Explorer Download
GitHub icon

Vue

< >

Vue is an open source framework created in 2014 by Evan You.

#81on PLDB 10Years Old 876kRepos
Download source code:
git clone https://github.com/vuejs/vue

Try now: Web

Vue.js (commonly referred to as Vue; pronounced , like view) is an open-source JavaScript framework for building user interfaces. Integration into projects that use other JavaScript libraries is simplified with Vue because it is designed to be incrementally adoptable. Vue can also function as a web application framework capable of powering advanced single-page applications.. Read more on Wikipedia...


Example from hello-world:
<div id="app"> <p>{{ message }}</p> </div> <script> new Vue({ el: '#app', data: { message: 'Hello World' } }) </script>
Example from Linguist:
<style> .red { color: #f00; } </style> <template> <div> <h2 v-class="red">{{msg}}</h2> </div> </template> <script> module.exports = { data: function () { return { msg: 'Hello from Vue!' } } } </script>
Example from Wikipedia:
<div id="app"> <div> <div>User 1</div> </div> </div>

View source

- Build the next great programming language About Acknowledgements Extensions Day 628 Donate feedback@pldb.io