vue 호적 관리 시스템 구현
호적 관리 시스템,v-model,v-for 참조
인터페이스 미리 보기
단계 사고방식:
1.html+css 생 성
2.vue 도입,인 스 턴 스
3.기본 데이터 메시지 배열 준비
4.기본 데이터 렌 더 링,v-for 순환 폼
5.새 데이터 newmessage 만 들 기
6.입력 상자 v-model 에 연결
7.추가 함수 add()를 만 들 고 기본 데이터 에 새 데 이 터 를 추가 합 니 다.new message->message
8.추 가 된 후 폼 을 비우 면 new message 를 복원 합 니 다.
9.시 에 누가 누 구 를 삭제 하 는 지 del()함수
body 부분:
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<div id = 'app' v-cloak>
<legend> </legend></br>
:<input type="text" placeholder=" " v-model = 'newmessage.name'></br>
:<input type="text" placeholder=" " v-model = 'newmessage.age'></br>
:
<select v-model = 'newmessage.sex'>
<option> </option>
<option> </option>
</select></br>
:<input type="text" placeholder=" " v-model = 'newmessage.phone'></br>
<button class = 'save' @click = 'add()'> </button></br>
<table>
<tr class = 'title'>
<td width = '100px'> </td>
<td width = '100px'> </td>
<td width = '100px'> </td>
<td width = '200px'> </td>
<td width = '100px'> </td>
</tr>
<tr v-for = 'item,index in message'>
<td>{{item.name}}</td>
<td>{{item.sex}}</td>
<td>{{item.age}}</td>
<td>{{item.phone}}</td>
<td><button @click = 'del(index)'> </button></td>
</tr>
</table>
</div>
vue 부분:
<script>
var app = new Vue({
el:'#app',
data:{
message:[
{
name:' ',
sex:' ',
age:16,
phone:'1568888811'
},
{
name:' ',
sex:' ',
age:26,
phone:'1456666622'
},
{
name:' ',
sex:' ',
age:36,
phone:'1866666666'
},
],
newmessage:{name:'',age:'',sex:' ',phone:''},
},
methods:{
add(){
if(!this.newmessage.name == ''){
this.message.push(this.newmessage);
this.newmessage = {
name:'',
age:'',
sex:' ',
phone:''
};
}
else{
alert(' !');
}
},
del(index){
this.message.splice(index,1);
}
}
})
</script>
css 스타일:
<style>
*{
margin:0;
padding:0;
}
#app{
border: 1px solid black;
width:800px;
padding:30px 30px;
}
#app .save{
background-color: #555555;
border-radius: 10%;
height:50px;
color:white;
}
#app input,select{
margin:10px 0;
width:300px;
}
#app td{
text-align: center;
}
#app .title td{
background-color: #555555;
color:white;
}
#app table button{
background-color: #555555;
color:white;
border-radius: 30%;
}
</style>
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 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에 따라 라이센스가 부여됩니다.