在Material VueJS的<md-table-cell>上使用<md-icon>和<md-icon>对齐的样式

时间:2019-08-22 23:17:06

标签: css vue.js vue-material

我想将操作放在同一数据行上,我有两个操作,要做到这一点,我使用一个按钮和一个图标作为下面的代码。

    <md-table v-model="gruposDeInsumos" md-sort="codigo" md-sort-order="asc" md-card>
        <md-table-row slot="md-table-row" slot-scope="{item}">
            <md-table-cell class="item-codigo" md-label="Código" md-sort-by="codigo"> {{item.codigo}}</md-table-cell>
            <md-table-cell class="item-nome" md-label="Nome" md-sort-by="nome"> {{item.nome}}</md-table-cell>
            <md-table-cell md-label="Tipo" md-sort-by="tipo"> {{item.tipo === 'products' ? 'Produtos' : 'Serviços'}}</md-table-cell>
            <md-table-cell md-label="Ações"> 
                <md-button>
                    <md-icon>edit</md-icon>
                </md-button>
                <md-button>
                    <md-icon>delete</md-icon>
                </md-button>
            </md-table-cell>
        </md-table-row>
    </md-table>

结果是:

enter image description here

就像您看到的那样,我在同一表行上有两行,这是在添加两个操作按钮(编辑和删除)之后发生的。那么,如何修复它以使这些组件保持同一行?

除此之外,如果有人知道,我该如何选择<md-icon>颜色?

1 个答案:

答案 0 :(得分:0)

您可以使用自己的CSS并应用包含display: flex属性的类。或者,您可以阅读其文档并使用其列语法。他们可能有一些要添加列的类。