123456789101112131415161718192021222324252627282930313233343536 |
- "use strict";
- const common_vendor = require("../../../common/vendor.js");
- const _sfc_main = {
- data() {
- return {
- title: "",
- content: ""
- };
- },
- onLoad(options) {
- this.title = options.title;
- this.content = options.content;
- common_vendor.index.setNavigationBarTitle({
- title: options.title
- });
- }
- };
- if (!Array) {
- const _easycom_uni_card2 = common_vendor.resolveComponent("uni-card");
- _easycom_uni_card2();
- }
- const _easycom_uni_card = () => "../../../uni_modules/uni-card/components/uni-card/uni-card.js";
- if (!Math) {
- _easycom_uni_card();
- }
- function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
- return {
- a: common_vendor.t($data.content),
- b: common_vendor.p({
- title: $data.title
- })
- };
- }
- const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-2c8ac270"], ["__file", "C:/Users/Administrator/Desktop/srcaaa/pages/common/textview/index.vue"]]);
- wx.createPage(MiniProgramPage);
|