Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 반복줄이기
- React.js
- Chart.js
- reactjs
- returnType
- 폰트적용하기
- 리액트
- react
- 타입스크립트
- 티스토리꾸미기
- 공통컴포넌트
- NonNullable
- JS console
- utilty type
- 커스텀
- typescript
- React Native
- 2022
- vue.js
- 타입좁히기
- CSS
- 제네릭
- TSDoc
- click and drag
- javascript
- const 단언문
- 누구나 자료구조와 알고리즘
- 개발콘텐츠
- 성능최적화
- 레이아웃쪼개기
Archives
- Today
- Total
몽땅뚝딱 개발자
[Vue.js] 별점구현하기 본문
클론코딩에 필요하여 이것저것 미리 만들어보는 중!
원래는 빈 별, 채워진 별 이미지로 구현하지만... 우선 급한대로 이모티콘으로 구현했다.
<template>
<div class="inner">
<div class="star-rating">
<div
class="star"
v-for="index in 5"
:key="index"
@click="check(index)"
>
<span v-if="index < score">🍎</span>
<span v-if="index >= score">🍏</span>
</div>
</div>
</div>
</template>
<script>
export default {
name: "Star",
data() {
return {
score: 0,
};
},
methods: {
check(index) {
this.score = index + 1;
},
},
};
</script>
개인적으로 공부한 내용을 정리하는 블로그로
잘못된 개념을 게시하지않도록 주의하고 있으나 오류가 있을 수 있습니다.
'Development > Vue.js' 카테고리의 다른 글
[Vue.js] router의 meta (0) | 2022.01.04 |
---|---|
[Vue.js] 커스텀 이벤트 작성 시 주의사항 (0) | 2022.01.04 |
[Vue.js/라이브러리] debounce (0) | 2021.12.31 |
[Vue.js/라이브러리] NProgress (0) | 2021.12.28 |
[Vue.js] vue-router의 네비게이션 가드 (0) | 2021.12.27 |
Comments