remerge https://git.unlock-music.dev/um/web/pulls/30 #67

Merged
lsr merged 4 commits from kylebing/web:master into master 2023-09-25 20:36:32 +00:00
Showing only changes of commit 9afc20246a - Show all commits

View File

@ -1,5 +1,5 @@
<template>
<el-container id="app" :style="`min-height: ${heightMinContainer}px`">
<el-container id="app">
<el-main class="p-0">
<Home />
</el-main>
@ -40,17 +40,12 @@ export default {
},
data() {
return {
version: config.version,
heightMinContainer: 800
version: config.version
};
},
created() {
this.$nextTick(() => {
this.heightMinContainer = innerHeight
this.finishLoad()
window.onresize = () => {
this.heightMinContainer = innerHeight
}
});
},
methods: {