Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- HTML
- 자료구조
- Algorithm
- math
- string
- github
- greedy
- JS
- 컴포넌트
- 자료형
- scss
- SasS
- 변수
- java
- vue.js
- dynamic programming
- hash table
- CSS
- 알고리즘
- sorting
- 코딩테스트
- JavaScript
- Python
- leetcode
- 파이썬
- JavaSceipt
- 프로그래머스
- array
- computed
- 백준
Archives
- Today
- Total
목록전역 컴포넌트 (1)
Posis
[Vue.js] 컴포넌트(component) 사용하기 feat. Vue-CLI
이번 포스트에서는 컴포넌트(component)를 만들고 어떻게 사용하는지에 대해서 다뤄보겠습니다. 컴포넌트(component) 만들기 프로젝트이름/src/components/Btn.vue {{ text }} 프로젝트이름/src/App.vue App.vue와 같은 위치에 components 폴더를 만들고 원하는 컴포넌트 파일을 만듭니다. - Btn.vue 저는 박스 안에 text(props)를 받아서 글자를 출력하기 위해서 script에서 props - text를 등록해줍니다. type은 String, text(props)를 넘겨주지 않았을 경우 기본값(default)으로 JavaScript를 등록해줍니다. App.vue 파일로 돌아와 script에 컴포넌트 파일을 import 하고 components에 ..
Vue.js
2021. 8. 13. 10:18