@vuemap/vue-amap
Version:
高德地图vue3版本封装
23 lines (21 loc) • 380 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);
};
export { buildProps, commonProps };
//# sourceMappingURL=buildHelper.mjs.map