learnin-some-vue/app.js
Tyrel Souza 78e0c132e7
v-html
2018-04-13 13:32:48 -04:00

15 lines
262 B
JavaScript

var app = new Vue({
el: '#app',
data: {
title: "Hello World",
link: "https://google.com",
finishedLink: '<a href="http://google.com/">Google</a>'
},
methods: {
sayHello(){
this.title = 'Hello';
return this.title;
}
}
})