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
- 2022
- react
- javascript
- React Native
- React.js
- 제네릭
- 폰트적용하기
- 티스토리꾸미기
- JS console
- 리액트
- 타입좁히기
- 성능최적화
- click and drag
- CSS
- 누구나 자료구조와 알고리즘
- reactjs
- 타입스크립트
- NonNullable
- TSDoc
- Chart.js
- utilty type
- 레이아웃쪼개기
- vue.js
- const 단언문
- 공통컴포넌트
- 커스텀
- 개발콘텐츠
- returnType
- typescript
- 반복줄이기
Archives
- Today
- Total
몽땅뚝딱 개발자
[Vue.js] Vue3 - defineProps() & defineEmits() 본문
..🥺
◽ props
📄 Vue2
<script>
export default {
props: {
title: {
type: String,
default: ''
}
}
}
</script>
📄 Vue3
<script setup>이 실행될 때 컴파일 된다.
<script setup>
import { defineProps, defineEmits, ref } from 'vue'
// props 선언하기
const props = defineProps({
title: {
Type: String,
default: '',
},
})
const propTitle = ref(props.title)
// emits 선언하기
const emits = defineEmits(['update:value'])
const handleClickEvent = (e) => {
emits('update:value', e.target.value)
}
</script>
개인적으로 공부한 내용을 정리하는 블로그로
잘못된 개념을 게시하지않도록 주의하고 있으나 오류가 있을 수 있습니다.
'Development > Vue.js' 카테고리의 다른 글
[Vue.js] Vue3에서 빌트인 컴포넌트 <component> 사용하기 (0) | 2022.06.25 |
---|---|
[Vue.js] ref의 input 포커스 이벤트 주기 (0) | 2022.06.22 |
[Vue.js] 비트(Vite)란? (작성 중) (0) | 2022.06.04 |
[Vue.js] Vue3의 Composition API (0) | 2022.04.13 |
모킹 모듈(mocking module) 사용하기 / axios-mock-adapter-path-params (0) | 2022.03.25 |
Comments