vue语言如何自定义iview tabpanel的宽度?

how to customize iveiw tabpane's width in vue language?

官方说vue中view的tab组件是这样的:

它的代码是:

<template>
    <Tabs type="card">
        <TabPane label="标签一">标签一的内容</TabPane>
        <TabPane label="标签二">标签二的内容</TabPane>
        <TabPane label="标签三">标签三的内容</TabPane>
    </Tabs>
</template>

但我想像这样使标签页标签更宽:

如何自定义它的宽度???

see other styles on official web:

去看看官方文档: https://www.iviewui.com/components/tabs#其它样式