UNPKG

cloud-ui.vusion

Version:
21 lines (19 loc) 476 B
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 {}; }, }, };