Vue 공부 - state 를 이용한 style 적용

이윤우·2022년 7월 27일
0

Vue

목록 보기
11/16
post-thumbnail
<template>
  <div v-bind:style="{ width: width + 'px', height: height + 'px'}"></div>
</template>

<script>
export default {
  data() {
    return {
      width: 40,
      height: 80
    };
  }
};
</script>

0개의 댓글