This commit is contained in:
2020-07-07 15:17:01 +00:00
parent 4830574351
commit 4586f18d6d
3 changed files with 44 additions and 29 deletions

View File

@@ -1,23 +1,20 @@
<template>
<v-col cols="12" mt-1 mb-2>
<v-alert
ref="errorbox"
:data-cy="!!$ay.dev ? 'errorbox' : false"
v-show="errorBoxMessage"
color="error"
icon="fa-exclamation-circle "
transition="scale-transition"
class="multi-line"
outlined
>{{ errorBoxMessage }}</v-alert
>
</v-col>
<v-expansion-panel>
<v-expansion-panel-header>MASS TAG</v-expansion-panel-header>
<v-expansion-panel-content>content here</v-expansion-panel-content>
</v-expansion-panel>
</template>
<script>
export default {
data: () => ({}),
props: {
errorBoxMessage: String
ayaType: {
type: Number,
default: 0
},
selectedItems: {
type: Array
}
}
};
</script>