Skip to content

Instantly share code, notes, and snippets.

@KoRiGaN
Created September 28, 2016 11:34
Show Gist options
  • Save KoRiGaN/3e6c884e5b19b09eff45dc0089b7ef37 to your computer and use it in GitHub Desktop.
Save KoRiGaN/3e6c884e5b19b09eff45dc0089b7ef37 to your computer and use it in GitHub Desktop.
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
module.exports = factory();
else if(typeof define === 'function' && define.amd)
define([], factory);
else if(typeof exports === 'object')
exports["TabManagement"] = factory();
else
root["TabManagement"] = factory();
})(this, function() {
return /******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
/******/
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/
/******/ // Check if module is in cache
/******/ if(installedModules[moduleId])
/******/ return installedModules[moduleId].exports;
/******/
/******/ // Create a new module (and put it into the cache)
/******/ var module = installedModules[moduleId] = {
/******/ exports: {},
/******/ id: moduleId,
/******/ loaded: false
/******/ };
/******/
/******/ // Execute the module function
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
/******/
/******/ // Flag the module as loaded
/******/ module.loaded = true;
/******/
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
/******/
/******/
/******/ // expose the modules object (__webpack_modules__)
/******/ __webpack_require__.m = modules;
/******/
/******/ // expose the module cache
/******/ __webpack_require__.c = installedModules;
/******/
/******/ // __webpack_public_path__
/******/ __webpack_require__.p = "/dist/";
/******/
/******/ // Load entry module and return exports
/******/ return __webpack_require__(0);
/******/ })
/************************************************************************/
/******/ ([
/* 0 */
/***/ function(module, exports, __webpack_require__) {
"use strict";
exports.Tabs = __webpack_require__(4);
exports.Tab = __webpack_require__(1);
/***/ },
/* 1 */
/***/ function(module, exports, __webpack_require__) {
var __vue_exports__, __vue_options__
/* script */
__vue_exports__ = __webpack_require__(2)
__vue_options__ = __vue_exports__ = __vue_exports__ || {}
if (
typeof __vue_exports__.default === "object" ||
typeof __vue_exports__.default === "function"
) {
__vue_options__ = __vue_exports__ = __vue_exports__.default
}
if (typeof __vue_options__ === "function") {
__vue_options__ = __vue_options__.options
}
module.exports = __vue_exports__
/***/ },
/* 2 */
/***/ function(module, exports) {
'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = {
template: '\n\t\t<div class="demo">\n\t\t\t<div>Tab</div>\n\t\t</div>\n\t',
name: 'tab',
created: function created() {
console.log('tab created');
},
mounted: function mounted() {
console.log('tab mounted');
}
};
/***/ },
/* 3 */
/***/ function(module, exports, __webpack_require__) {
'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
var _Tab = __webpack_require__(1);
var _Tab2 = _interopRequireDefault(_Tab);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
exports.default = {
template: '\n\t\t<div>\n\t\t\t<div>\n\t\t\t\t<h1>Title</h1>\n\t\t\t</div>\n\t\t\t<div>\n\t\t\t\t<slot></slot>\n\t\t\t</div>\n\t\t</div>\n\t',
created: function created() {
console.log('tabs created');
},
mounted: function mounted() {
console.log('tabs mounted');
},
components: {
'tab': _Tab2.default
}
};
/***/ },
/* 4 */
/***/ function(module, exports, __webpack_require__) {
var __vue_exports__, __vue_options__
/* script */
__vue_exports__ = __webpack_require__(3)
__vue_options__ = __vue_exports__ = __vue_exports__ || {}
if (
typeof __vue_exports__.default === "object" ||
typeof __vue_exports__.default === "function"
) {
__vue_options__ = __vue_exports__ = __vue_exports__.default
}
if (typeof __vue_options__ === "function") {
__vue_options__ = __vue_options__.options
}
module.exports = __vue_exports__
/***/ }
/******/ ])
});
;
//# sourceMappingURL=tab-management.js.map
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment