简体   繁体   中英

How to remove (Click to sort Ascending) text from header of every column in this bootstrap-vue table?

I have a bootstrap-vue table that looks like this;

在此处输入图像描述

Here is the code;

<template>
  <div class="container">
    <h1 class="pt-2 pb-3">Bootstrap Table</h1>    
    <b-table striped hover :items="items" :fields="fields" primary-key></b-table>
  </div>
</template>

<script>
export default {
  data() {
    return {      
      "fields": [
        {
          "key": "first_name",
          "label": "My First Name",
          "sortable": true,
        },
        {
          "key": "last_name",
          "label": "My Last Name",
          "sortable": true,
        },
        {
          "key": "age",
          "label": "Age",
          "sortable": true,
          "sortByFormatted": false,           
        },        
      ],
      "items": [
        { "age": -40, "first_name": "Dickerson", "last_name": "Macdonald"},
        { "age": 21, "first_name": "Larsen", "last_name": "Shaw" },
        { "age": 89, "first_name": "Geneva", "last_name": "Wilson" },
        { "age": 38, "first_name": "Jami", "last_name": "Carney" }
      ]
    };
  }
};
</script>

I want to remove the (Click to sort Ascending) text that appears in the header of every column.

I am puzzled why this text appears when it does not appear anywhere in the code.

I am using vue v2.6

Set the label-sort-asc , label-sort-desc , and label-sort-clear props to an empty string to remove the sorting labels:

<b-table
 ⋮
 label-sort-asc=""
 label-sort-desc=""
 label-sort-clear=""
></b-table>

demo

Have you imported Bootstrap CSS files in your app entry point? Bootstrap uses the .sr-only class to hide that text and show it just on screen readers.

Look at the "Using module bundlers" section https://bootstrap-vue.org/docs

i hade same problem, it is not about load css files, it is about version conflict. when running npm i bootstrap it will install bootstrap version 5 , while in bootstrap-vue site is expressed: Bootstrap v4.3.1 is required, v4.6.1 is recommended so i ran npm uninstall bootstrap and then ran npm install bootstrap@4.6.1 and it fixed

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM