Skip to content

Instantly share code, notes, and snippets.

View alvaro-canepa's full-sized avatar

Alvaro Cánepa alvaro-canepa

View GitHub Profile
@wobsoriano
wobsoriano / DialogProvider.vue
Last active July 17, 2022 15:43
Vuetify + Composition API Dialog component that can be used globally
<template>
<div v-frag>
<slot />
<v-dialog
v-model="isOpen"
:max-width="options.width"
:persistent="options.persistent"
>
<v-card>
<v-card-title>{{ title }}</v-card-title>