bootstrap-vue
Version:
Quickly integrate Bootstrap 4 components with Vue.js
22 lines (19 loc) • 441 B
JavaScript
import { mergeData } from "../../utils";
export var props = {
tag: {
type: String,
default: "div"
}
};
export default {
functional: true,
props: props,
render: function render(h, _ref) {
var props = _ref.props,
data = _ref.data;
return h(props.tag, mergeData(data, {
staticClass: "dropdown-divider",
attrs: { role: "separator" }
}));
}
};