mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-18 00:02:15 +00:00
20 lines
411 B
Vue
20 lines
411 B
Vue
<template>
|
|
<div
|
|
class="grid h-20 grid-flow-col items-end gap-1 sm:h-28 sm:gap-2 lg:flex lg:items-end lg:justify-between lg:gap-0"
|
|
>
|
|
<!--Data bar-->
|
|
<Bar v-for="(item, i) in data" :key="i" :bar="item" />
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import Bar from './Bar'
|
|
|
|
export default {
|
|
name: 'BarChart',
|
|
props: ['color', 'data'],
|
|
components: {
|
|
Bar,
|
|
},
|
|
}
|
|
</script>
|