nly-adminlte-vue
Version:
nly adminlte3 components
35 lines (32 loc) • 656 B
JavaScript
import Vue from "../../utils/vue";
const name = "NlyTimelineFooter";
export const NlyTimelineFooter = Vue.extend({
name: name,
props: {
tag: {
type: String,
default: "div"
},
timelineFooterClass: {
type: String
}
},
computed: {
customProps: function() {
return {
tag: this.tag,
timelineFooterClass: this.timelineFooterClass
};
}
},
render(h) {
return h(
this.customProps.tag,
{
staticClass: "timeline-footer",
class: [this.customProps.timelineFooterClass]
},
this.$slots.default
);
}
});