nly-adminlte-vue
Version:
nly adminlte3 components
39 lines (36 loc) • 985 B
JavaScript
import Vue from "../../utils/vue";
import { mergeData } from "vue-functional-data-merge";
import { isString } from "../../utils/inspect";
export const props = {
tag: {
type: String,
default: "div"
},
flush: {
type: Boolean,
default: false
},
horizontal: {
type: [Boolean, String],
default: false
}
};
const name = "NlyListGroup";
export const NlyListGroup = Vue.extend({
name: name,
functional: true,
props,
render(h, { props, data, children }) {
let horizontal = props.horizontal === "" ? true : props.horizontal;
horizontal = props.flush ? false : horizontal;
const componentData = {
staticClass: "list-group",
class: {
"list-group-flush": props.flush,
"list-group-horizontal": horizontal === true,
[`list-group-horizontal-${horizontal}`]: isString(horizontal)
}
};
return h(props.tag, mergeData(data, componentData), children);
}
});