cloud-ui.vusion
Version:
Vusion Cloud UI
21 lines (19 loc) • 476 B
JavaScript
import Steps from 'proto-ui.vusion/src/u-steps.vue';
export default {
name: 'u-steps',
mixins: [Steps],
props: {
size: String,
},
computed: {
styleObject() {
if (this.size === 'auto') {
const width = this.itemVMs.length ? (1 / this.itemVMs.length) * 100 + '%' : undefined;
return {
width,
};
} else
return {};
},
},
};