This commit is contained in:
syuilo
2019-02-20 07:08:54 +09:00
parent 47bf06f432
commit 9aa24c0552
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>