You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
527 B
23 lines
527 B
"use strict";
|
|
const common_vendor = require("../../../common/vendor.js");
|
|
const _sfc_main = {
|
|
__name: "webView",
|
|
setup(__props) {
|
|
let webviewStyles = {
|
|
progress: {
|
|
color: "#3877ff"
|
|
}
|
|
};
|
|
let link = common_vendor.ref("");
|
|
common_vendor.onLoad((option) => {
|
|
link.value = decodeURIComponent(option.link);
|
|
console.log(link.value);
|
|
});
|
|
return (_ctx, _cache) => {
|
|
return {
|
|
a: common_vendor.unref(webviewStyles)
|
|
};
|
|
};
|
|
}
|
|
};
|
|
wx.createPage(_sfc_main);
|