feat:#15 added selection in datatable to store and removed selectAll

This commit is contained in:
masterElmar
2023-11-29 01:51:20 +01:00
parent 6666faf802
commit d41e6f4a3c
6 changed files with 56 additions and 118 deletions

View File

@@ -31,6 +31,7 @@ import Column from "primevue/column";
import DynamicDialog from "primevue/dynamicdialog";
import DialogService from "primevue/dialogservice";
import ProgressSpinner from "primevue/progressspinner";
import Checkbox from "primevue/checkbox";
import i18n from "./i18n";
const app = createApp(App);
@@ -65,4 +66,5 @@ app.component("DataTable", DataTable);
app.component("Column", Column);
app.component("DynamicDialog", DynamicDialog);
app.component("ProgressSpinner", ProgressSpinner);
app.component("Checkbox", Checkbox);
app.mount("#app");