mirror of
https://github.com/Lissy93/dashy.git
synced 2026-02-01 12:41:26 +01:00
30 lines
473 B
Vue
30 lines
473 B
Vue
<template>
|
|
<div>
|
|
<WidgetBase
|
|
v-for="(widget, widgetIndex) in widgets"
|
|
:key="widgetIndex"
|
|
:widget="widget"
|
|
:index="widgetIndex"
|
|
/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import WidgetBase from '@/components/Widgets/WidgetBase';
|
|
|
|
export default {
|
|
name: 'WidgetGroup',
|
|
components: {
|
|
WidgetBase,
|
|
},
|
|
props: {
|
|
widgets: Array,
|
|
},
|
|
computed: {},
|
|
};
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
@import '@/styles/media-queries.scss';
|
|
|
|
</style>
|