From e2edf593f1b9ed384abd249363f75c551625283a Mon Sep 17 00:00:00 2001 From: iamBadgers Date: Mon, 9 Mar 2026 00:14:17 -0700 Subject: [PATCH] playing with buttons --- src/App.vue | 24 ++++++++++++++++++++++-- src/main.ts | 6 +----- 2 files changed, 23 insertions(+), 7 deletions(-) diff --git a/src/App.vue b/src/App.vue index a7aaac2..6fcc565 100644 --- a/src/App.vue +++ b/src/App.vue @@ -7,14 +7,34 @@ import DataTable from "primevue/datatable" import Column from "primevue/column" const data = ref() +const activeTables = ref() -onMounted(() => data.value = [{potato: "potato", tato: "tato"}]) +onMounted(() => { + data.value = [{potato: "potato", tato: "tato"}] + activeTables.value = [ + { + tableName: "Table-One", + link: "vtt.cyberpunkrush.co/table-one" + } + ] +})