index.vue 710 B

12345678910111213141516171819202122232425
  1. <template>
  2. <uni-shadow-root class="weapp-lib-config-provider-index"><view class="van-config-provider" :style="computed.mapThemeVarsToCSSVars(themeVars)">
  3. <slot></slot>
  4. </view></uni-shadow-root>
  5. </template>
  6. <wxs src="./index.wxs" module="computed"></wxs>
  7. <script>
  8. global['__wxRoute'] = 'weapp/lib/config-provider/index'
  9. "use strict";
  10. Object.defineProperty(exports, "__esModule", { value: true });
  11. var component_1 = require("../common/component");
  12. (0, component_1.VantComponent)({
  13. props: {
  14. themeVars: {
  15. type: Object,
  16. value: {},
  17. },
  18. },
  19. });
  20. export default global['__wxComponents']['weapp/lib/config-provider/index']
  21. </script>
  22. <style platform="mp-weixin">
  23. </style>