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 December 19, 2024 13:25
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>