UNPKG

vuetify

Version:

Vue.js 2 Semantic Component Framework

20 lines (16 loc) 752 B
import { createSimpleFunctional } from '../../util/helpers'; import VStepper from './VStepper'; import VStepperStep from './VStepperStep'; import VStepperContent from './VStepperContent'; var VStepperHeader = createSimpleFunctional('stepper__header'); var VStepperItems = createSimpleFunctional('stepper__items'); export { VStepper, VStepperContent, VStepperStep, VStepperHeader, VStepperItems }; /* istanbul ignore next */ VStepper.install = function install(Vue) { Vue.component(VStepper.name, VStepper); Vue.component(VStepperContent.name, VStepperContent); Vue.component(VStepperStep.name, VStepperStep); Vue.component(VStepperHeader.name, VStepperHeader); Vue.component(VStepperItems.name, VStepperItems); }; export default VStepper;