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.
21 lines
532 B
21 lines
532 B
"use strict";
|
|
const common_vendor = require("../../../common/vendor.js");
|
|
const store_modules_car = require("../../../store/modules/car.js");
|
|
const _sfc_main = {
|
|
__name: "webView",
|
|
setup(__props) {
|
|
let webviewStyles = {
|
|
progress: {
|
|
color: "#3877ff"
|
|
}
|
|
};
|
|
let usecarStore = store_modules_car.carStore();
|
|
return (_ctx, _cache) => {
|
|
return {
|
|
a: common_vendor.unref(usecarStore).webLink,
|
|
b: common_vendor.unref(webviewStyles)
|
|
};
|
|
};
|
|
}
|
|
};
|
|
wx.createPage(_sfc_main);
|