cione-comp-lib
Version:
`$ yarn add cione-comp-lib` 或者 `$ npm i cione-comp-lib -S`
33 lines (32 loc) • 797 B
JavaScript
const Props = {
url: { type: String, default: "/data/images/coModelViewer/gltf/Robot.glb" },
envImage: { type: String, default: "/data/images/coModelViewer/hall.hdr" },
data: { type: Array, default: [] },
initData: {
type: Object,
default: { orbit: "", target: "" }
},
mainContainerStyle: {
type: Object,
default: { backgroundColor: "transparent", width: 100, height: 100 }
},
btnStyle: {
type: Object,
default: {
size: 24,
backgroundColor: "rgb(255, 255, 255)"
}
},
containerStyle: {
type: Object,
default: {
width: 100,
backgroundColor: "rgb(255, 255, 255)",
color: "#000",
fontSize: 14,
fontWeight: "normal",
fontFamily: "\u5FAE\u8F6F\u96C5\u9ED1"
}
}
};
export { Props as default };