element-ui-el-table-draggable
Version:
Make 'el-table' of 'element UI' sortable.
38 lines (31 loc) • 1.06 kB
JavaScript
// Import vue component
import component from './SortableElTable.vue';
// install function executed by Vue.use()
function install(Vue) {
if (install.installed) return;
install.installed = true;
Vue.component('ElementUiElTableDraggable', component);
}
// Create module definition for Vue.use()
const plugin = {
install,
};
// To auto-install when vue is found
/* global window global */
let GlobalVue = null;
if (typeof window !== 'undefined') {
GlobalVue = window.Vue;
} else if (typeof global !== 'undefined') {
GlobalVue = global.Vue;
}
if (GlobalVue) {
GlobalVue.use(plugin);
}
// Inject install function into component - allows component
// to be registered via Vue.use() as well as Vue.component()
component.install = install;
// Export component by default
export default component;
// It's possible to expose named exports when writing components that can
// also be used as directives, etc. - eg. import { RollupDemoDirective } from 'rollup-demo';
// export const RollupDemoDirective = component;