Skip to content

Instantly share code, notes, and snippets.

@igeligel
Created May 11, 2019 13:25
Show Gist options
  • Save igeligel/50e597a1611c2f97dfcc632596fe9e91 to your computer and use it in GitHub Desktop.
Save igeligel/50e597a1611c2f97dfcc632596fe9e91 to your computer and use it in GitHub Desktop.
var vm = new Vue({
el: "#example",
data: {
message: "Hello"
},
computed: {
// a computed getter
reversedMessage: function() {
// `this` points to the vm instance
return this.message
.split("")
.reverse()
.join("");
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment