1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- export default {
- /* 分类 */
- tabs:{
- type: Array,
- default:[]
- },
- color:{
- type:String,
- default:'#FC3538'
- },
- /* 初始化选中 */
- defaultSelect:{
- type: Number,
- default: 0
- },
- /* 设置当前选中 初始化的时候 如果 该值 和 defaultSelect 不一致 且 存在 tabs 默认使用 value */
- value:{
- type: Number,
- default:0
- },
- /* 是否触发首次 */
- first:{
- type: Boolean,
- default: false
- },
- backgroundColor:{
- type:String,
- default:'#F8F9FB'
- },
- /* 类型 */
- headerComponent:{
- type:String,
- default:'line'
- },
- /* 紧凑 */
- compact:{
- type: Boolean,
- default: false
- },
- /* 紧凑模式下生效 */
- margin:{
- type: Number,
- default: 0
- }
- }
|