This commit is contained in:
syuilo 2018-02-14 19:33:39 +09:00
parent 205e728025
commit 00aaf300c4

View file

@ -82,13 +82,15 @@ export default Vue.extend({
},
mounted() {
const main = this.$refs.main as any;
main.style.top = '15%';
main.style.left = (window.innerWidth / 2) - (main.offsetWidth / 2) + 'px';
Vue.nextTick(() => {
const main = this.$refs.main as any;
main.style.top = '15%';
main.style.left = (window.innerWidth / 2) - (main.offsetWidth / 2) + 'px';
window.addEventListener('resize', this.onBrowserResize);
window.addEventListener('resize', this.onBrowserResize);
this.open();
this.open();
});
},
destroyed() {