You are on page 1of 2

<!

-- dialog example -->


<v-dialog
v-model="dialog"
width="1000"
>
<template v-slot:activator="{ on, attrs }">
<v-btn
color="red lighten-2"
dark
v-bind="attrs"
v-on="on"
>
Click Me
</v-btn>
</template>

<v-card>
<v-card-title class="text-h5 grey lighten-2">
Privacy Policy
</v-card-title>

<v-card-text class="text-h5 grey lighten-2">


Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim
veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum
dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident,
sunt in culpa qui officia deserunt mollit anim id est laborum.
</v-card-text>
<v-row no-gutters>
<v-col
cols="12"
sm="4"
>
<v-card
class="pa-2"
>
<v-icon
large
color="green darken-2"
>
mdi-domain
</v-icon>
One of three columns

</v-card>
</v-col>
<v-col
cols="12"
sm="8"
>
<v-row no-gutters>
<template v-for="(item, index) in data">
<v-col :key="item">
<v-card
class="pa-2"
tile
>
<v-icon
large
color="green darken-2"
>
mdi-domain
</v-icon>
Column
</v-card>
</v-col>
<v-responsive
v-if="(index+1) === 2"
:key="`width-${index}`"
width="100%"
></v-responsive>
</template>
</v-row>
</v-col>
</v-row>
<v-divider></v-divider>

<v-card-actions class="text-h5 grey lighten-2">


<v-spacer></v-spacer>
<v-btn
color="primary"
text
@click="dialog = false"
>
I accept
</v-btn>
</v-card-actions>
</v-card>
</v-dialog>
<!-- end example dialog -->

You might also like