UNPKG

@progress/kendo-listview-vue-wrapper

Version:
30 lines (20 loc) 846 B
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); var _KendoListView = require('../KendoListView'); var _KendoListView2 = _interopRequireDefault(_KendoListView); var _KendoPager = require('../KendoPager'); var _KendoPager2 = _interopRequireDefault(_KendoPager); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } let KendoListViewInstaller = class { static install(Vue) { Vue.component(_KendoListView2.default.name, _KendoListView2.default); Vue.component(_KendoPager2.default.name, _KendoPager2.default); } }; exports.default = KendoListViewInstaller; // Automatic installation if Vue has been added to the global scope. if (typeof window !== 'undefined' && window.Vue && window.Vue.use) { window.Vue.use(KendoListViewInstaller); }