Simple to use, Vuetify overlay component. Github: https://github.com/goodjun/vuetify-overlay
npm install vuetify-overlay --save
Include plugin in your src/plugins/vuetify.ts
file.
import VuetifyOverlay from "vuetify-overlay";
Vue.use(VuetifyOverlay);
// Open overlay
this.$overlay(true);
// Close overlay
this.$overlay(false);