42 lines
1006 B
Vue
42 lines
1006 B
Vue
|
|
<script setup>
|
||
|
|
const isDialogVisible = ref(false)
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<VDialog
|
||
|
|
v-model="isDialogVisible"
|
||
|
|
persistent
|
||
|
|
class="v-dialog-sm"
|
||
|
|
>
|
||
|
|
<!-- Dialog Activator -->
|
||
|
|
<template #activator="{ props }">
|
||
|
|
<VBtn v-bind="props">
|
||
|
|
Open Dialog
|
||
|
|
</VBtn>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<!-- Dialog close btn -->
|
||
|
|
<DialogCloseBtn @click="isDialogVisible = !isDialogVisible" />
|
||
|
|
|
||
|
|
<!-- Dialog Content -->
|
||
|
|
<VCard title="Use Google's location service?">
|
||
|
|
<VCardText>
|
||
|
|
Let Google help apps determine location. This means sending anonymous location data to Google, even when no apps are running.
|
||
|
|
</VCardText>
|
||
|
|
|
||
|
|
<VCardText class="d-flex justify-end gap-3 flex-wrap">
|
||
|
|
<VBtn
|
||
|
|
color="secondary"
|
||
|
|
variant="tonal"
|
||
|
|
@click="isDialogVisible = false"
|
||
|
|
>
|
||
|
|
Disagree
|
||
|
|
</VBtn>
|
||
|
|
<VBtn @click="isDialogVisible = false">
|
||
|
|
Agree
|
||
|
|
</VBtn>
|
||
|
|
</VCardText>
|
||
|
|
</VCard>
|
||
|
|
</VDialog>
|
||
|
|
</template>
|