Not sure if im doing this right (not a wizard with Vue)
Trying to enable pagination on a k-table in a panel view. The table currently has 2100 rows in it. From looking at the component docs, this should work?
<template>
<div>
<k-table v-if="opsys.length" :columns="tablecolumns" :rows="opsys" :pagination="true" />
</div>
</template>
<script lang="js">
export default {
props: {
name: String,
columns: Object,
options: Array,
pagination: Boolean,
rows: {
type: Array,
default() {
return [];
},
},
empty: String,
},