TaskComponent.vue 파일
1. 버튼을 달아준다.
<template>
<div>
<button class="btn btn-primary btn-block">Add New Task</button>
</div>
</template>
<script>
export default {
mounted() {
console.log('Component mounted.')
}
}
</script>
2. 테이블 디자인
<template>
<div>
<button class="btn btn-primary btn-block">Add New Task</button>
<table class="table">
<thead>
<tr>
<th>id</th>
<th>Name</th>
<th>Body</th>
</tr>
</thead>
<tbody>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
</div>
</template>
<script>
export default {
mounted() {
console.log("Component mounted.");
}
};
</script>
'라라벨 > laravel vue crud' 카테고리의 다른 글
7. Database Modal Create (0) | 2020.02.27 |
---|---|
6. Databases Data 불러오기 (0) | 2020.02.27 |
4. Vue 설정 component 생성, 등록 (0) | 2020.02.27 |
3. 컨트롤러 설정 Task Json 반환처리, TaskController 작성 (0) | 2020.02.26 |
2. 컨트롤러, 라우터 설정 (0) | 2020.02.26 |