UNPKG

vue-sticky-directive

Version:

A powerful vue directive make element sticky.

14 lines (9 loc) 194 B
import Sticky from './sticky'; const install = function(Vue) { Vue.directive('Sticky', Sticky); }; if (window.Vue) { Vue.use(install); } Sticky.install = install; export default Sticky;