2020-04-03 16:34:17 +08:00
|
|
|
import HocElAffix from './components/ScrollAffix'
|
|
|
|
|
|
|
|
|
|
const install = function (Vue, opts = {}) {
|
|
|
|
|
Vue.component('HocElAffix', HocElAffix)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (typeof window !== 'undefined' && window.Vue) {
|
|
|
|
|
install(window.Vue)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default {
|
2020-04-04 21:04:30 +08:00
|
|
|
version: '0.0.4',
|
2020-04-03 16:34:17 +08:00
|
|
|
install,
|
|
|
|
|
HocElAffix
|
|
|
|
|
}
|