UNPKG

vue-cesium

Version:
37 lines (32 loc) 1.18 kB
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); var vue = require('vue'); require('../../../composables/index.js'); var util = require('../../../utils/util.js'); var cesiumProps = require('../../../utils/cesium-props.js'); var emits = require('../../../utils/emits.js'); var index = require('../../../composables/use-geometries/index.js'); "use strict"; const sphereGeometryOutlineProps = { ...cesiumProps.radius, ...cesiumProps.stackPartitions, ...cesiumProps.slicePartitions, ...cesiumProps.subdivisions }; var GeometrySphereOutline = vue.defineComponent({ name: "VcGeometrySphereOutline", props: sphereGeometryOutlineProps, emits: emits.commonEmits, setup(props, ctx) { const instance = vue.getCurrentInstance(); instance.cesiumClass = "SphereOutlineGeometry"; index["default"](props, ctx, instance); return () => { var _a; return vue.createCommentVNode(util.kebabCase(((_a = instance.proxy) == null ? void 0 : _a.$options.name) || "v-if")); }; } }); exports["default"] = GeometrySphereOutline; exports.sphereGeometryOutlineProps = sphereGeometryOutlineProps; //# sourceMappingURL=index.js.map