mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-19 08:32:14 +00:00
19 lines
346 B
Vue
19 lines
346 B
Vue
<template>
|
|
<div class="flex items-end justify-between h-28">
|
|
<span
|
|
class="w-2.5 block rounded-lg lg:mr-2 mr-1.5"
|
|
:style="{height: height + '%', backgroundColor: color}"
|
|
v-for="(height, i) in data"
|
|
:key="i">
|
|
</span>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
name: 'BarChart',
|
|
props: {
|
|
data: {},
|
|
color: {},
|
|
}
|
|
}
|
|
</script> |