@vuemap/vue-amap
Version:
高德地图vue3版本封装
26 lines (23 loc) • 426 B
JavaScript
;
const commonProps = {
visible: {
type: Boolean,
default: true
},
zIndex: {
type: Number
},
reEventWhenUpdate: {
type: Boolean,
default: false
},
extraOptions: {
type: Object
}
};
const buildProps = (props) => {
return Object.assign({}, commonProps, props);
};
exports.buildProps = buildProps;
exports.commonProps = commonProps;
//# sourceMappingURL=buildHelper.js.map