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

1 week ago
  1. "use strict";
  2. const common_vendor = require("../../../common/vendor.js");
  3. const store_modules_car = require("../../../store/modules/car.js");
  4. const _sfc_main = {
  5. __name: "webView",
  6. setup(__props) {
  7. let webviewStyles = {
  8. progress: {
  9. color: "#3877ff"
  10. }
  11. };
  12. let usecarStore = store_modules_car.carStore();
  13. return (_ctx, _cache) => {
  14. return {
  15. a: common_vendor.unref(usecarStore).webLink,
  16. b: common_vendor.unref(webviewStyles)
  17. };
  18. };
  19. }
  20. };
  21. wx.createPage(_sfc_main);