@scalar/api-client
Version:
the open source API testing client
24 lines (23 loc) • 644 B
JavaScript
import { defineComponent as a, createBlock as o, openBlock as r, withCtx as s, createElementVNode as n, renderSlot as l, createTextVNode as c, toDisplayString as p } from "vue";
import i from "./DataTableCell.vue.js";
const f = { class: "flex-1 px-2 py-1.5 whitespace-nowrap" }, d = /* @__PURE__ */ a({
__name: "DataTableText",
props: {
text: {}
},
setup(e) {
return (t, _) => (r(), o(i, { class: "relative flex" }, {
default: s(() => [
n("span", f, [
l(t.$slots, "default", {}, () => [
c(p(e.text), 1)
])
])
]),
_: 3
}));
}
});
export {
d as default
};