19 lines
598 B
JavaScript
19 lines
598 B
JavaScript
"use strict";
|
|
const common_vendor = require("../../../common/vendor.js");
|
|
const components_public_Mixins = require("../Mixins.js");
|
|
const _sfc_main = {
|
|
__name: "index",
|
|
emits: ["click"],
|
|
setup(__props, { emit: __emit }) {
|
|
const emit = __emit;
|
|
return (_ctx, _cache) => {
|
|
return {
|
|
a: common_vendor.o$1(($event) => emit("click")),
|
|
b: common_vendor.unref(components_public_Mixins.bottomSafeAreaHeight)()
|
|
};
|
|
};
|
|
}
|
|
};
|
|
const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-bd91e69e"]]);
|
|
wx.createComponent(Component);
|