[Vuejs]-Issue of displaying button using tabulator in VueJs

1👍

The Tabulator package would replace anything inside the div used to render it, which also includes your button.
So you might wanna go with this Template code:-

<template>
<div class="table-wrapper>
    <div ref="table">
    </div>
    <div class="my-2">
        <v-btn color="Save">Primary</v-btn>
    </div>
</div>

Leave a comment