no message
This commit is contained in:
parent
403b637e60
commit
c98d858c9f
1 changed files with 4 additions and 4 deletions
|
|
@ -39,7 +39,7 @@ const competencyTypeOp = ref<DataOption[]>([
|
|||
name:'สมรรถนะเฉพาะสำหรับตำแหน่งผู้ตรวจราชการ กทม. และผู้ตรวจราชการ',
|
||||
},
|
||||
])
|
||||
const column = [
|
||||
const columns = ref<QTableProps["columns"]>([
|
||||
{
|
||||
name: "competency",
|
||||
align: "left",
|
||||
|
|
@ -51,7 +51,7 @@ const column = [
|
|||
sort: (a: string, b: string) =>
|
||||
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
|
||||
},
|
||||
] as const satisfies QTableProps["columns"];
|
||||
])
|
||||
|
||||
const $q = useQuasar();
|
||||
const mixin = useCounterMixin();
|
||||
|
|
@ -169,7 +169,7 @@ onMounted(async () => {
|
|||
:display-value="$q.lang.table.columns"
|
||||
emit-value
|
||||
map-options
|
||||
:options="column"
|
||||
:options="columns"
|
||||
option-value="name"
|
||||
options-cover
|
||||
style="min-width: 150px"
|
||||
|
|
@ -179,7 +179,7 @@ onMounted(async () => {
|
|||
|
||||
<d-table
|
||||
ref="table"
|
||||
:columns="column"
|
||||
:columns="columns"
|
||||
:rows="rows"
|
||||
:filter="filterKeyword"
|
||||
row-key="id"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue