This commit is contained in:
2020-04-21 20:24:34 +00:00
parent a8c227fb17
commit eda73f8342

View File

@@ -0,0 +1,33 @@
<template>
<div>
<span class="v-label v-label--active theme--light">
{{ $ay.t("Attachments") }}
</span>
<v-expansion-panels focusable>
<v-expansion-panel v-for="(item, i) in 5" :key="i">
<v-expansion-panel-header>Item</v-expansion-panel-header>
<v-expansion-panel-content>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad
minim veniam, quis nostrud exercitation ullamco laboris nisi ut
aliquip ex ea commodo consequat.
</v-expansion-panel-content>
</v-expansion-panel>
</v-expansion-panels>
</div>
</template>
<script>
export default {
created() {},
data() {
return {};
},
props: {
ayaType: Number,
ayaId: Number,
readonly: Boolean
},
methods: {}
};
</script>