vc-popup
Version:
vue popup components with power position and animation support and back key support as well
18 lines (14 loc) • 331 B
JavaScript
const version = '0.1.25'
const install = function (Vue, config = {}) {
if (install.installed) return
Vue.use(require('vc-popup-base'))
require('../../src/components/popup-datetime-picker')
}
// auto install
if (typeof window !== 'undefined' && window.Vue) {
install(window.Vue)
}
export default {
install,
version
}