acdr-ui/dist/dev/mp-weixin/modules/mall/goods/components/detail/detail-cell.js

33 lines
766 B
JavaScript
Raw Normal View History

2024-09-19 07:20:14 +08:00
"use strict";
const common_vendor = require("../../../../../common/vendor.js");
const _sfc_main = {
__name: "detail-cell",
props: {
label: {
type: String,
default: ""
},
value: {
type: String,
default: ""
}
},
emits: ["click"],
setup(__props, { emit: __emit }) {
const emits = __emit;
const onClick = () => {
emits("click");
};
return (_ctx, _cache) => {
return {
a: common_vendor.t(__props.label),
b: common_vendor.t(__props.value),
c: common_vendor.o(onClick)
};
};
}
};
const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-75319daf"]]);
wx.createComponent(Component);
//# sourceMappingURL=detail-cell.js.map