23 lines
656 B
JavaScript
23 lines
656 B
JavaScript
"use strict";
|
|
const common_vendor = require("../../common/vendor.js");
|
|
if (!Math) {
|
|
selfTabbar();
|
|
}
|
|
const selfTabbar = () => "../../components/self-tabbar/index.js";
|
|
const _sfc_main = {
|
|
__name: "index",
|
|
setup(__props) {
|
|
const acc = common_vendor.ref(0);
|
|
return (_ctx, _cache) => {
|
|
return {
|
|
a: common_vendor.o(($event) => acc.value = $event),
|
|
b: common_vendor.p({
|
|
modelValue: acc.value
|
|
})
|
|
};
|
|
};
|
|
}
|
|
};
|
|
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__file", "D:/WebstormProjects/uni-ticket-system/src/pages/index/index.vue"]]);
|
|
wx.createPage(MiniProgramPage);
|