@scalar/api-reference
Version:
Generate beautiful API references from OpenAPI documents
24 lines (23 loc) • 683 B
JavaScript
import { defineComponent, createElementBlock, openBlock, createTextVNode, createVNode, unref } from "vue";
import { ScalarIconCaretDown } from "@scalar/icons";
const _hoisted_1 = {
class: "show-more",
type: "button"
};
const _sfc_main = /* @__PURE__ */ defineComponent({
__name: "ShowMoreButton",
setup(__props) {
return (_ctx, _cache) => {
return openBlock(), createElementBlock("button", _hoisted_1, [
_cache[0] || (_cache[0] = createTextVNode(" Show More ", -1)),
createVNode(unref(ScalarIconCaretDown), {
class: "text-c-2 mt-0.25 size-3",
weight: "bold"
})
]);
};
}
});
export {
_sfc_main as default
};