implement "new catalog" in editor

This commit is contained in:
Seth Ladygo
2019-05-04 14:44:34 -07:00
parent 7431f23b67
commit 829df7667e
4 changed files with 45 additions and 8 deletions

View File

@ -0,0 +1,21 @@
<template>
<v-dialog v-model="show" persistent width="300">
<v-card color="green" dark>
<v-card-text class="white--text">
{{ text }}
<v-progress-linear indeterminate color="white" class="mb-0" />
</v-card-text>
</v-card>
</v-dialog>
</template>
<script>
export default {
data: () => ({
}),
props: {
text: String,
show: Boolean,
},
}
</script>