1234567891011121314151617181920 |
- "use strict";
- var common_vendor = require("../../common/vendor.js");
- const _sfc_main = {
- data() {
- return {
- url: ""
- };
- },
- onLoad(val) {
- this.url = common_vendor.index.getStorageSync("url");
- console.log(this.url);
- }
- };
- function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
- return {
- a: $data.url
- };
- }
- var MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-999c58ba"], ["__file", "E:/Project/2023/\u95EE\u8BCA\u5E73\u53F0/his_user_miniapp/pages/index/h5.vue"]]);
- wx.createPage(MiniProgramPage);
|