26 lines
601 B
Vue
26 lines
601 B
Vue
<template>
|
|
<div>
|
|
<ul class="timeline mb-0">
|
|
<li class="timeline-item ps-6 ">
|
|
<span class="timeline-indicator-advanced timeline-indicator-success border-0 shadow-none">
|
|
<i class="icon-base bx bx-check-circle"></i>
|
|
</span>
|
|
<div class="timeline-event ps-1">
|
|
<div class="timeline-header">
|
|
<small class="text-success text-uppercase">투표결과</small>
|
|
</div>
|
|
<h6 class="my-50">돼지고기 </h6>
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
|
|
</script>
|
|
|
|
<style>
|
|
|
|
</style>
|