Initial commit
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user