@vue-material/core
Version:
Yet another 'Material Design Components' library for Vue3.
21 lines (20 loc) • 550 B
JavaScript
import "../../assets/button.css.js";
import { defineComponent, openBlock, createElementBlock, normalizeClass, renderSlot } from "vue";
const _sfc_main = /* @__PURE__ */ defineComponent({
__name: "button-group",
props: {
span: { type: Boolean }
},
setup(__props) {
return (_ctx, _cache) => {
return openBlock(), createElementBlock("div", {
class: normalizeClass(["md-button-group", { span: _ctx.span }])
}, [
renderSlot(_ctx.$slots, "default")
], 2);
};
}
});
export {
_sfc_main as default
};