31 lines
764 B
Vue
31 lines
764 B
Vue
<template>
|
|
<v-layout row justify-center>
|
|
<v-dialog
|
|
v-model="dialog"
|
|
persistent
|
|
max-width="290"
|
|
>
|
|
<v-card>
|
|
<v-card-title class="headline">{{ title }}</v-card-title>
|
|
<v-card-text>{{ text }}</v-card-text>
|
|
<v-card-actions>
|
|
<v-spacer></v-spacer>
|
|
<v-btn color="green darken-1" flat @click="dialog = false">Ok</v-btn>
|
|
</v-card-actions>
|
|
</v-card>
|
|
</v-dialog>
|
|
</v-layout>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data () {
|
|
return {
|
|
dialog: false,
|
|
title: "",
|
|
text: ""
|
|
}
|
|
}
|
|
}
|
|
</script>
|