是否可以将vue-tables-2中的列下拉列表移到左侧?

时间:2019-04-24 08:16:01

标签: vue.js vuejs2

我有一个使用vue-tables-2制成的表,想将列下拉列表移至左侧,将搜索移至右侧。

我已经在https://www.npmjs.com/package/vue-tables-2#templates处阅读了文档,但似乎没有解释如何这样做。我尝试使用插槽,但似乎没有正确的插槽名称。

这是桌子:

<v-server-table url="/api/organizations/"                           :columns="organizations.columns"                            :options="organizations.options"
@loading="loading()"
@loaded="loaded()"></v-server-table>

以下是选项:

options: {
    columnDisplay: {
        acronym: 'not_mobile',
        organization_name: 'not_mobile',
        website: 'desktop',
        phone: 'not_mobile',
        email: 'not_mobile'
    },
    columnsDropdown: true,
    sortIcon: {
        base: 'icon',
        up: 'icon-sort-up',
        down: 'icon-sort-down',
        is: 'icon-sort'
    }
}

有人知道如何将搜索向右切换,将列向左切换吗?

Below is what I have and would like to achieve

0 个答案:

没有答案