Skip to content

Instantly share code, notes, and snippets.

@tsukiyama-a5
Created November 18, 2019 12:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tsukiyama-a5/80a5e6642153faf1bd112d811a54303c to your computer and use it in GitHub Desktop.
Save tsukiyama-a5/80a5e6642153faf1bd112d811a54303c to your computer and use it in GitHub Desktop.
var app = new Vue({
el: '#app',
data: {
name: 'ogura',
age: 53
},
filters: {
format: function(value) {
return '御年' + value + '歳';
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment