Package Exports
- vuetify-overlay
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (vuetify-overlay) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Vuetify Overlay
Simple to use, Vuetify overlay component. Github: https://github.com/goodjun/vuetify-overlay
Install
npm install vuetify-overlay --saveHow to use
Include plugin in your src/plugins/vuetify.ts file.
import VuetifyOverlay from "vuetify-overlay";
Vue.use(VuetifyOverlay);How to call
// Open overlay
this.$overlay(true);
// Close overlay
this.$overlay(false);