nanka iroiro

This commit is contained in:
syuilo
2018-05-29 15:38:48 +09:00
parent 4ecc8c799d
commit a426f4c7bd
8 changed files with 14 additions and 238 deletions

View File

@@ -23,7 +23,7 @@ export default Vue.extend({
},
mounted() {
// for Safari bug
this.$refs.grid.style.height = `${this.$refs.grid.clientHeight}px`;
this.$refs.grid.style.height = this.$refs.grid.clientHeight ? `${this.$refs.grid.clientHeight}px` : '128px';
}
});
</script>