diff --git a/src/components/app-vuero/ComVFlexTable.vue b/src/components/app-vuero/ComVFlexTable.vue index a83f805..cd8fcad 100644 --- a/src/components/app-vuero/ComVFlexTable.vue +++ b/src/components/app-vuero/ComVFlexTable.vue @@ -129,8 +129,10 @@ const columns = computed(() => { column.grow === true && 'is-grow', column.grow === 'lg' && 'is-grow-lg', column.grow === 'xl' && 'is-grow-xl', + column.align === 'start' && 'cell-start', column.align === 'end' && 'cell-end', column.align === 'center' && 'cell-center', + column.cellClass, ]" /> { column.grow === true && 'is-grow', column.grow === 'lg' && 'is-grow-lg', column.grow === 'xl' && 'is-grow-xl', + column.align === 'start' && 'cell-start', column.align === 'end' && 'cell-end', column.align === 'center' && 'cell-center', + column.cellClass, ]" >{{ column.label }} @@ -167,8 +171,10 @@ const columns = computed(() => { column.grow === true && 'is-grow', column.grow === 'lg' && 'is-grow-lg', column.grow === 'xl' && 'is-grow-xl', + column.align === 'start' && 'cell-start', column.align === 'end' && 'cell-end', column.align === 'center' && 'cell-center', + column.cellClass, ]" /> { column.grow === true && 'is-grow', column.grow === 'lg' && 'is-grow-lg', column.grow === 'xl' && 'is-grow-xl', + column.align === 'start' && 'cell-start', column.align === 'end' && 'cell-end', column.align === 'center' && 'cell-center', + column.cellClass, ]" >{{ column.label }} diff --git a/src/pages/app/priceManagement.vue b/src/pages/app/priceManagement.vue index b81cfe9..76805b9 100644 --- a/src/pages/app/priceManagement.vue +++ b/src/pages/app/priceManagement.vue @@ -1,6 +1,6 @@