vue 에서 component 구성 요소 의 props 사용 에 대한 자세 한 설명
props 사용법
Vue.component('my-component',{
props:['message'],
template:'<div class="tem1">{{message}}</div>'
});
<my-component message="hello"></my-component>
메모:props 의 성명 은 template 앞 에 놓 아야 합 니 다.props 는 인 스 턴 스 의 변수 할당 을 사용 할 수 있 습 니 다.
전역 구성 요 소 는 prop 를 사용 하 는 동작 을 가 져 올 수 있 습 니 다.
다음 예 는 message 입 니 다.먼저"hello!!!"로 렌 더 링 합 니 다.클릭 이벤트 zan 방법 을 다시 comdata,message 할당 으로 호출 합 니 다.
하지만 comdata 만 표시 되 어 message 의 값 표시 에 영향 을 줄 수 없습니다.
<div id="app">
<my-component v-bind:message='message'></my-component>
</div>
</body>
<script>
Vue.component('my-component',{
props:['message'],
template:'<div v-on:click="zan">{{comdata}}<div>{{message}}</div></div>',
data:function(){return {comdata:this.message}},
methods:{
zan:function(){
this.comdata=this.message+'vue';
this.message=this.message+'vue'
}
}
});
var app=new Vue({
el:'#app',
data:{message:'hello!!!'}
})
</script>
prop 검증
구성 요 소 는 props 에 인증 기능 을 제공 합 니 다.
props:{propName:
{
typpe:[Number,String,Boolean,Function,Array,Object],
default:function(){
return {name:'weng'}
},
validator:function(value){
return value.length>3
}
}
}
ps:type 사용자 정의 instanceof 검 측 사용 가능vaidator 인증 은 개발 버 전 vuejs 에서 콘 솔 에서 출력 되 어야 합 니 다.
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Fastapi websocket 및 vue 3(Composition API)1부: FastAPI virtualenv 만들기(선택 사항) FastAPI 및 필요한 모든 것을 다음과 같이 설치하십시오. 생성main.py 파일 및 실행 - 브라우저에서 이 링크 열기http://127.0.0.1:...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.