This commit is contained in:
syuilo 2019-02-20 07:08:54 +09:00
parent 47bf06f432
commit 9aa24c0552
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69
4 changed files with 18 additions and 1 deletions

View file

@ -40,6 +40,11 @@ export default Vue.extend({
return {
showBody: true
};
},
methods: {
toggleContent(show: boolean) {
this.showBody = show;
}
}
});
</script>