30 lines
794 B
JavaScript
30 lines
794 B
JavaScript
"use strict";
|
|
const common_vendor = require("../common/vendor.js");
|
|
const _sfc_main = {
|
|
name: "tab",
|
|
data() {
|
|
return {};
|
|
},
|
|
props: {
|
|
current: {
|
|
type: Number,
|
|
default: 0
|
|
}
|
|
}
|
|
};
|
|
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
return {
|
|
a: common_vendor.o(($event) => false),
|
|
b: common_vendor.o(($event) => false),
|
|
c: common_vendor.o(($event) => false),
|
|
d: common_vendor.o(($event) => false),
|
|
e: common_vendor.o(($event) => false),
|
|
f: common_vendor.o(($event) => false),
|
|
g: common_vendor.o(($event) => false),
|
|
h: common_vendor.o(($event) => false),
|
|
i: $props.current
|
|
};
|
|
}
|
|
const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render]]);
|
|
wx.createComponent(Component);
|