mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-19 05:09:40 +02:00
26 lines
362 B
Vue
26 lines
362 B
Vue
|
<template>
|
||
|
<div v-if="items[0]">
|
||
|
<h2 class="mt-4">{{ title }}</h2>
|
||
|
<v-chip
|
||
|
class="ma-1"
|
||
|
color="accent"
|
||
|
dark
|
||
|
v-for="category in items"
|
||
|
:key="category"
|
||
|
>
|
||
|
{{ category }}
|
||
|
</v-chip>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
props: {
|
||
|
items: Array,
|
||
|
title: String,
|
||
|
},
|
||
|
};
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
</style>
|