Before/Vue.js

[Vue.js] 컴포넌트 데이터 바인딩

bbyuk 2021. 3. 22. 22:50

 

컴포넌트 내 데이터 바인딩 관련 예제 코드

 

각각 주석부분에 설명 기입

 

 

css

<style scoped>
input:focus {
  outline: none;
}
.inputBox {
  background: white;
  height: 50px;
  line-height: 50px;
  border-radius: 5px;
}
.inputBox input {
  border-style: none;
  font-size: 0.9rem;
}
.addContainer {
  float: right;
  background: linear-gradient(to right, #6478fb, #8763fb);
  display: block;
  width: 3rem;
  border-radius: 0 5px 5px 0;
}
.addBtn {
  color: white;
  vertical-align: middle;
}
</style>