0
단일 파일 구성 요소에 의해 생성 된 vue 인스턴스의 clientHeight
속성에 액세스하려고하지만 undefined를 반환합니다. 어떻게해야합니까? 이 마운트되어 후 this.$el
그래서 당신이 실제로 this.$el.clientHeight
를 원하는 것과는 mounted
의 후
<template lang='jade'>
article#article.projectCard.relative.mb5.pa5(v-bind:style="styleObject")
h3 {{ project.projectName }}
p {{ project.projectDescription }}
</template>
<script>
export default {
props: {
project: '',
},
data() {
return {
styleObject: {
backgroundColor: this.project.projectMainColor,
height: '80vh'
},
cardHeight: this.clientHeight,
};
},
</script>