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 545B

1234567891011121314151617
  1. import { createSimpleFunctional } from '../../util/helpers';
  2. import VContainer from './VContainer';
  3. import VContent from './VContent';
  4. import VFlex from './VFlex';
  5. import VLayout from './VLayout';
  6. var VSpacer = createSimpleFunctional('spacer', 'div', 'v-spacer');
  7. export { VContainer, VContent, VFlex, VLayout, VSpacer };
  8. export default {
  9. $_vuetify_subcomponents: {
  10. VContainer: VContainer,
  11. VContent: VContent,
  12. VFlex: VFlex,
  13. VLayout: VLayout,
  14. VSpacer: VSpacer
  15. }
  16. };
  17. //# sourceMappingURL=index.js.map