This repository has been archived on 2024-07-27. You can view files and clone it, but cannot push or open issues or pull requests.
keksAccountGUI/node_modulesOLD/vuetify/lib/components/VTimeline/VTimeline.js
2019-08-11 20:48:02 +02:00

42 lines
No EOL
796 B
JavaScript

// Styles
import "../../../src/components/VTimeline/VTimeline.sass";
import mixins from '../../util/mixins'; // Mixins
import Themeable from '../../mixins/themeable';
export default mixins(Themeable
/* @vue/component */
).extend({
name: 'v-timeline',
provide() {
return {
timeline: this
};
},
props: {
alignTop: Boolean,
dense: Boolean,
reverse: Boolean
},
computed: {
classes() {
return {
'v-timeline--align-top': this.alignTop,
'v-timeline--dense': this.dense,
'v-timeline--reverse': this.reverse,
...this.themeClasses
};
}
},
render(h) {
return h('div', {
staticClass: 'v-timeline',
class: this.classes
}, this.$slots.default);
}
});
//# sourceMappingURL=VTimeline.js.map