Files
procat2/cateditor/src/components/Loading.vue
2019-05-04 14:44:34 -07:00

22 lines
400 B
Vue

<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>