This commit is contained in:
Henry Jordan
2021-10-06 20:32:05 +00:00
parent eb4bb5a6a9
commit 0a2667bacf
3 changed files with 4 additions and 16 deletions

View File

@@ -15,12 +15,6 @@
:column="column"
:headings="options.headings"
></slot>
<!-- <slot
name="send_by"
:item="item"
column="send_by"
:headings="options.headings"
></slot> -->
</b-col>
<b-col sm="3">
<slot
@@ -55,7 +49,6 @@ export default {
};
},
mounted() {
// this.filterOptions();
},
methods: {
classBtn(cls) {

View File

@@ -56,15 +56,7 @@ export default {
methods: {
classBtn(cls) {
return "btn btn-slim btn-force-radius v-btn-header " + cls;
},
/**
* Filter the column send_by
*/
filterOptions() {
this.options.columns = this.options.columns.filter(function (item) {
return item !== "send_by";
});
},
}
},
};
</script>