How to show hide columns of vuetify data table using v-select list?
问题 I am working on VueJs template and I have one data table of Vuetify I have created a select list of headers of tables. On the basis of the select list, I want to show and hide columns of the table if any heading is unchecked then that will hide from the table same as if checked then that will appear in table. Select List: <v-select v-model="value" :items="headers" label="Select Item" multiple > <template v-slot:selection="{ item, index }"> <v-chip v-if="index === 0"> <span>{{ item.text }}<