- Spring Boot 后端服务 (hss-home-service) - delivery-miniapp 配送小程序 - website 官网 (Nuxt) - docs 架构设计文档 - Docker 容器化部署配置 Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
26 lines
1.0 KiB
JavaScript
26 lines
1.0 KiB
JavaScript
import { defineComponent, mergeProps, useSSRContext } from "vue";
|
|
import { ssrRenderAttrs, ssrInterpolate } from "vue/server-renderer";
|
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
__name: "PainPointCard",
|
|
__ssrInlineRender: true,
|
|
props: {
|
|
title: {},
|
|
desc: {}
|
|
},
|
|
setup(__props) {
|
|
return (_ctx, _push, _parent, _attrs) => {
|
|
_push(`<div${ssrRenderAttrs(mergeProps({ class: "bg-white rounded-2xl p-8 shadow-sm border border-gray-100" }, _attrs))}><h3 class="font-bold text-xl mb-3 text-red-500">${ssrInterpolate(__props.title)}</h3><p class="text-text-secondary leading-relaxed">${ssrInterpolate(__props.desc)}</p></div>`);
|
|
};
|
|
}
|
|
});
|
|
const _sfc_setup = _sfc_main.setup;
|
|
_sfc_main.setup = (props, ctx) => {
|
|
const ssrContext = useSSRContext();
|
|
(ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("components/PainPointCard.vue");
|
|
return _sfc_setup ? _sfc_setup(props, ctx) : void 0;
|
|
};
|
|
export {
|
|
_sfc_main as _
|
|
};
|
|
//# sourceMappingURL=PainPointCard-Lm1N0rdZ.js.map
|