123456789101112131415161718192021222324252627282930 |
- "use strict";
- const common_vendor = require("../../common/vendor.js");
- const common_assets = require("../../common/assets.js");
- const _sfc_main = {
- data() {
- return {};
- },
- computed: {
- statusText() {
- const statusTextArr = ["哎呀,用点力继续下拉!", "松手刷新~~", "正在努力刷新中...", "刷新成功啦~"];
- return statusTextArr[this.status];
- }
- },
- props: {
- status: {
- type: Number,
- default: function() {
- return 0;
- }
- }
- }
- };
- function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
- return {
- a: common_assets._imports_0,
- b: common_vendor.t($options.statusText)
- };
- }
- const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-f0e95ecb"]]);
- wx.createComponent(Component);
|