1234567891011121314151617181920212223242526272829303132333435 |
- export default {
- item:{
- type:Object,
- default:function () {
- return {};
- }
- },
- size:{
- type:String,
- default:'default'
- },
- control:{
- type:Boolean,
- default:false
- },
- goDetail:{
- type:Boolean,
- default:false
- },
- rate:{
- type:Boolean,
- default: true
- },
- image:{
- type:Boolean,
- default:true
- }
- }
|