Vuejs is minimal javascript that handle web applications its increasing adoptable stack (vue resources, vue router, vuex, ) that incrementally add stack or library, if you need, vue is capable of single page apps that without refresh , if you use vue router to exchange any view the user want, here the example of code of vuejs from their website
straightforward template syntax:
<div id="app">
{{ message }}
</div>
var app = new Vue({
el: '#app',
data: {
message: 'Hello Vue!'
}
})
the output of code
Hello Vue!
No comments:
Post a Comment