mirror of
https://github.com/jpros/tacticalrmm-web.git
synced 2026-03-01 15:51:15 +00:00
22 lines
428 B
Vue
22 lines
428 B
Vue
<template>
|
|
<q-btn dense color="primary" icon-right="archive" @click="export">
|
|
<q-tooltip>Export table as CSV</q-tooltip>
|
|
</q-btn>
|
|
</template>
|
|
|
|
<script>
|
|
import { exportTableToCSV } from "@/utils/csv";
|
|
|
|
export default {
|
|
name: "export-table-btn",
|
|
props: {
|
|
columns: !Array,
|
|
data: !Array,
|
|
},
|
|
setup(props) {
|
|
return {
|
|
export: () => exportTableToCSV(props.data, props.columns),
|
|
};
|
|
},
|
|
};
|
|
</script> |