15 lines
352 B
JavaScript
15 lines
352 B
JavaScript
"use strict";
|
|
const common_vendor = require("../../common/vendor.js");
|
|
const _sfc_main = {
|
|
__name: "statusBar",
|
|
setup(__props) {
|
|
const statusBarHeight = common_vendor.index.getSystemInfoSync().statusBarHeight + "px";
|
|
return (_ctx, _cache) => {
|
|
return {
|
|
a: statusBarHeight
|
|
};
|
|
};
|
|
}
|
|
};
|
|
my.createComponent(_sfc_main);
|