Basic VueJs Component
Defining and using a component - http://coligo.io
HTML
<script src="https://cdn.jsdelivr.net/vue/1.0.16/vue.js"></script>
<div id="app">
<saludos value='edgar' dia='lunes'/>
</div>
JavaScript
Vue.component('saludos', {
props: ['value','dia'],
template: '<h1>Welcome to coligo! {{value}} {{dia}}</h1>'
});
// create a new Vue instance and mount it to our div element above with the id of app
var vm = new Vue({
el: '#app'
});