Files
procat2/cateditor/src/components/Loading.vue
2019-10-02 13:49:20 -07:00

25 lines
450 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 {
props: {
text: {
type: String,
default: 'Loading...',
},
show: Boolean,
},
data: () => ({
}),
}
</script>