Top 1K Features Creators Events Podcasts Books Extensions Interviews Blog Explorer CSV

Vue

< >

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

#157on PLDB 10Years Old 876kRepos
Download source code:
git clone https://github.com/vuejs/vue
Homepage · REPL · Source Code · Wikipedia · Twitter

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>

- Build the next great programming language · Add · Issues · About · Search · Keywords · Livestreams · Labs · Resources · Acknowledgements

Built with Scroll v164.7.0