You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
364 B
29 lines
364 B
<template>
|
|
|
|
</template>
|
|
|
|
<script>
|
|
import {} from "@/api/sysLanguage.js"
|
|
|
|
export default {
|
|
name: "null",
|
|
data() {
|
|
return {
|
|
height: '',
|
|
}
|
|
},
|
|
mounted() {
|
|
this.$nextTick(() => {
|
|
this.height = window.innerHeight - 240;
|
|
})
|
|
},
|
|
methods: {},
|
|
created() {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|