mirror of
https://github.com/PanJiaChen/vue-element-admin.git
synced 2025-09-05 16:59:47 +08:00
14 lines
287 B
JavaScript
14 lines
287 B
JavaScript
import adaptive from './adaptive'
|
|
|
|
const install = function(Vue) {
|
|
Vue.directive('el-height-adaptive-table', adaptive)
|
|
}
|
|
|
|
if (window.Vue) {
|
|
window['el-height-adaptive-table'] = adaptive
|
|
Vue.use(install); // eslint-disable-line
|
|
}
|
|
|
|
adaptive.install = install
|
|
export default adaptive
|