From 71598380787d044c7f99cf1e94c02b5cbf4653f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=B5=9C=EC=A4=80=ED=9D=A0?= Date: Sun, 18 Sep 2022 10:58:46 +0900 Subject: [PATCH] vue2_frontend... --- src/components/todo/ListComponent.vue | 60 +++++++++++++++------------ src/store/auth.store.js | 16 +++---- src/store/todo.store.js | 4 +- 3 files changed, 43 insertions(+), 37 deletions(-) diff --git a/src/components/todo/ListComponent.vue b/src/components/todo/ListComponent.vue index 9856ec5..bdac69b 100644 --- a/src/components/todo/ListComponent.vue +++ b/src/components/todo/ListComponent.vue @@ -55,20 +55,20 @@ :sort-by.sync="sortBy" :sort-desc.sync="sortDesc" @sort-changed="sortClick" - label-sort-asc="" - label-sort-desc="" - label-sort-clear="" - :select-mode="selectedRowMode" - selectable @row-selected="rowSelectedToggle" - :sticky-header="commonTableAttributes.stickyHeader" - :no-border-collapse="commonTableAttributes.noBorderCollapse" - :striped="commonTableAttributes.striped" - :hover="commonTableAttributes.hover" - :no-local-sorting="commonTableAttributes.noLocalSorting" - :bordered="commonTableAttributes.bordered" - :dark="commonTableAttributes.dark" - :head-variant="commonTableAttributes.headVariant" + :sticky-header="tableAttributes.stickyHeader" + :no-border-collapse="tableAttributes.noBorderCollapse" + :striped="tableAttributes.striped" + :hover="tableAttributes.hover" + :no-local-sorting="tableAttributes.noLocalSorting" + :bordered="tableAttributes.bordered" + :dark="tableAttributes.dark" + :head-variant="tableAttributes.headVariant" + :label-sort-asc="tableAttributes.labelSortAsc" + :label-sort-desc="tableAttributes.labelSortDesc" + :label-sort-clear="tableAttributes.labelSortClear" + :select-mode="tableAttributes.selectedRowMode" + :selectable="tableAttributes.selectable" >