File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
<template>
<div class="box">
<p style="font-size:2rem; font-weight:800; margin-bottom:10px">기본 List Table</p>
<!-- 여기서부터 복사 -->
<table class="list-table">
<colgroup>
<col style="width: ;">
<col style="width: ;">
<col style="width: ;">
<col style="width: ;">
</colgroup>
<thead>
<tr>
<th>No</th>
<th>user ID</th>
<th>이름</th>
<th>생년월일</th>
<th>성별</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>test123</td>
<td>홍길동</td>
<td>1999.01.01</td>
<td>여</td>
</tr>
<tr>
<td>1</td>
<td>test123</td>
<td>홍길동</td>
<td>1999.01.01</td>
<td>여</td>
</tr>
</tbody>
</table>
</div>
<div class="box">
<p style="font-size:2rem; font-weight:800; margin-bottom:10px">기본 form Table</p>
<!-- 여기서부터 복사 -->
<table class="form-table">
<colgroup>
<col style="width: ;">
<col style="width: ;">
<col style="width: ;">
<col style="width: ;">
</colgroup>
<tbody>
<tr>
<th>user ID</th>
<td><input type="text" name="" id=""></td>
<th>이름</th>
<td><input type="text" name="" id=""></td>
</tr>
<tr>
<th>생년월일</th>
<td>
<div class="flex">
<select name="" id=""></select>
<select name="" id=""></select>
<select name="" id=""></select>
</div>
</td>
<th>성별</th>
<td>
<select name="" id=""></select>
</td>
</tr>
</tbody>
</table>
</div>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
},
watch: {
},
computed: {
},
components: {
},
mounted() {
console.log('main mounted');
}
}
</script>
<style scoped>
.box {
padding: 50px;
border: 1px solid #eee;
margin-bottom: 30px;
}
</style>