37 lines
879 B
Vue
37 lines
879 B
Vue
<template>
|
|
<div>
|
|
<ul class="timeline mb-0">
|
|
<li class="timeline-item ps-6 ">
|
|
<span class="timeline-indicator-advanced timeline-indicator-primary 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-primary text-uppercase">투표결과</small>
|
|
</div>
|
|
<h6 v-if="data" class="my-50">{{ data[0].LOCVOTCON }}</h6>
|
|
<h6 v-if="randomResultNum" class="my-50">{{randomResultNum }}</h6>
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
const props = defineProps({
|
|
data: {
|
|
type: Object,
|
|
required: false,
|
|
},
|
|
randomResultNum: {
|
|
type: String,
|
|
required: false,
|
|
},
|
|
});
|
|
|
|
</script>
|
|
|
|
<style>
|
|
|
|
</style>
|