cloudtables-vue
Advanced tools
Comparing version 0.0.4 to 0.0.5
@@ -144,7 +144,7 @@ // | ||
module.exports = { | ||
CloudTables: __vue_component__, | ||
install: function(Vue, options) { | ||
Vue.component("CloudTbales", __vue_component__); | ||
}, | ||
}; | ||
function install(Vue, options) { | ||
Vue.component("CloudTbales", __vue_component__); | ||
} | ||
var component = __vue_component__; | ||
export { component, install as default }; |
@@ -1,2 +0,2 @@ | ||
(function () { | ||
var CloudTables = (function (exports) { | ||
'use strict'; | ||
@@ -147,9 +147,14 @@ | ||
module.exports = { | ||
CloudTables: __vue_component__, | ||
install: function(Vue, options) { | ||
Vue.component("CloudTbales", __vue_component__); | ||
}, | ||
}; | ||
function install(Vue, options) { | ||
Vue.component("CloudTbales", __vue_component__); | ||
} | ||
var component = __vue_component__; | ||
}()); | ||
exports.component = component; | ||
exports['default'] = install; | ||
Object.defineProperty(exports, '__esModule', { value: true }); | ||
return exports; | ||
}({})); |
@@ -1,5 +0,6 @@ | ||
(function (factory) { | ||
typeof define === 'function' && define.amd ? define(factory) : | ||
factory(); | ||
}((function () { 'use strict'; | ||
(function (global, factory) { | ||
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) : | ||
typeof define === 'function' && define.amd ? define(['exports'], factory) : | ||
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.CloudTables = {})); | ||
}(this, (function (exports) { 'use strict'; | ||
@@ -149,9 +150,12 @@ // | ||
module.exports = { | ||
CloudTables: __vue_component__, | ||
install: function(Vue, options) { | ||
Vue.component("CloudTbales", __vue_component__); | ||
}, | ||
}; | ||
function install(Vue, options) { | ||
Vue.component("CloudTbales", __vue_component__); | ||
} | ||
var component = __vue_component__; | ||
exports.component = component; | ||
exports['default'] = install; | ||
Object.defineProperty(exports, '__esModule', { value: true }); | ||
}))); |
{ | ||
"name": "cloudtables-vue", | ||
"version": "0.0.4", | ||
"version": "0.0.5", | ||
"private": false, | ||
@@ -5,0 +5,0 @@ "keywords": [ |
import CloudTables from "./cloudtables.vue"; | ||
module.exports = { | ||
CloudTables, | ||
install: function(Vue, options) { | ||
Vue.component("CloudTbales", CloudTables); | ||
}, | ||
}; | ||
export default function install(Vue, options) { | ||
Vue.component("CloudTbales", CloudTables); | ||
} | ||
export const component = CloudTables; |
17702
448