UNPKG

@nativescript-community/ui-material-ripple

Version:

The Material Design Ripple component provides a radial action in the form of a visual ripple expanding outward from the user's touch. Ripple is a visual form of feedback for touch events providing users a clear signal that an element is being touched.

11 lines 266 B
import { Ripple } from '../ripple'; let installed = false; export default { install(Vue) { if (!installed) { installed = true; Vue.registerElement('MDRipple', () => Ripple, {}); } } }; //# sourceMappingURL=index.js.map