Questions Columns Rows
GitHub icon

Vue

Vue - Framework

< >

Vue is an open source framework created in 2014.

Source code:
git clone https://github.com/vuejs/vue
#117on PLDB 9Years Old 876kRepos

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 Search Add Language Features Creators Resources About Blog Acknowledgements Stats Sponsor Traffic Traffic Today Day 277 feedback@pldb.com Logout