"use strict";
|
|
const common_vendor = require("../../common/vendor.js");
|
|
const _sfc_main = {
|
|
name: "ProtocolDialog",
|
|
props: {
|
|
show: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
title: {
|
|
type: String,
|
|
default: ""
|
|
},
|
|
content: {
|
|
type: String,
|
|
default: ""
|
|
}
|
|
}
|
|
};
|
|
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
return common_vendor.e({
|
|
a: $props.show
|
|
}, $props.show ? {
|
|
b: common_vendor.t($props.title),
|
|
c: $props.content,
|
|
d: common_vendor.o(($event) => _ctx.$emit("reject")),
|
|
e: common_vendor.o(($event) => _ctx.$emit("agree"))
|
|
} : {});
|
|
}
|
|
const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-bbe16946"]]);
|
|
wx.createComponent(Component);
|
|
//# sourceMappingURL=../../../.sourcemap/mp-weixin/wxcomponents/protocol-dialog/protocol-dialog.js.map
|