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>
<table class="detail-table mb30">
<colgroup>
<col width="10%" />
<col width="90%" />
</colgroup>
<tbody>
<tr class="detail-title">
<td colspan="2">
<p class="detail-table-title point-font mb10">타이틀입니다</p>
<p><span>등록일시 | 2024.04.03</span></p>
</td>
</tr>
<tr>
<td colspan="2" class="pd15">
<div style="min-height:35rem">
안녕하세요. 글의 내용입니다. 어쩌고저쩌고 샬라샬라
</div>
</td>
</tr>
<tr class="border-t">
<td class="pd15 point-font">
첨부파일
</td>
<td>
<!-- <div v-if="fileList.length == 0">
<label>첨부된 파일이 없습니다.</label>
</div> -->
<!-- <ul v-else v-for="(item, idx) in fileList" :key="idx">
<li @click="downloadFile(item)">{{ item.real_file_nm }}</li>
</ul> -->
</td>
</tr>
</tbody>
</table>
<div class="flex justify-end align-center no-gutters">
<div class="gd-2">
<button class="large-btn green-border-btn">목록</button>
</div>
</div>
</div>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
},
watch: {
},
computed: {
},
components: {
},
mounted() {
}
}
</script>
<style scoped></style>