Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.js 1.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. 'use strict';
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
  6. require('../src/stylus/app.styl');
  7. var _Vuetify = require('./components/Vuetify');
  8. var _Vuetify2 = _interopRequireDefault(_Vuetify);
  9. var _components = require('./components');
  10. var components = _interopRequireWildcard(_components);
  11. var _directives = require('./directives');
  12. var _directives2 = _interopRequireDefault(_directives);
  13. function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }
  14. function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
  15. var Vuetify = {
  16. install: function install(Vue, args) {
  17. Vue.use(_Vuetify2.default, _extends({
  18. components: components,
  19. directives: _directives2.default
  20. }, args));
  21. },
  22. version: '1.5.12'
  23. };
  24. if (typeof window !== 'undefined' && window.Vue) {
  25. window.Vue.use(Vuetify);
  26. }
  27. exports.default = Vuetify;
  28. //# sourceMappingURL=index.js.map