Skip to content

Instantly share code, notes, and snippets.

@darktasevski
Last active July 30, 2018 10:47
Show Gist options
  • Select an option

  • Save darktasevski/ec555bf61dcf6a40d193d8f0653d998c to your computer and use it in GitHub Desktop.

Select an option

Save darktasevski/ec555bf61dcf6a40d193d8f0653d998c to your computer and use it in GitHub Desktop.
HelloWorld.js (Vue)
new Vue({
el: '#app',
data: {
title: 'Hello World',
imgUrl: 'https://i.imgur.com/whm2eGE.jpg',
},
methods: {
changeTitle() {
this.title = 'Hello World Updated!';
},
addSubtitle() {
return 'Rise and shine, Mister Freeman.';
},
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment