1234567891011121314151617181920 |
- "use strict";
- const common_vendor = require("../../common/vendor.js");
- const _sfc_main = {
- name: "CustomStatusBar",
- data() {
- return {
- statusBarHeight: 20
- };
- },
- mounted() {
- this.statusBarHeight = common_vendor.index.getSystemInfoSync().statusBarHeight;
- }
- };
- function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
- return {
- a: $data.statusBarHeight + "px"
- };
- }
- const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__file", "/Users/xy/Desktop/uni_app_project/xs/xs-app/components/custom-navbar/custom-statusbar.vue"]]);
- tt.createComponent(Component);
|