수정2...
This commit is contained in:
parent
69ceff1253
commit
5ff12cab9d
@ -85,20 +85,20 @@
|
||||
:dark="commonTableAttributes.dark"
|
||||
:head-variant="commonTableAttributes.headVariant"
|
||||
>
|
||||
<!-- Column별 Filter용 -->
|
||||
<template #head(is_done)="data">
|
||||
<!-- Field별 Filter용 -->
|
||||
<template #head(is_done)="fields">
|
||||
<b-form-select
|
||||
v-model="filterIsDone"
|
||||
:options="data.field.Options"
|
||||
:options="fields.field.Options"
|
||||
@change="isDoneClick"
|
||||
></b-form-select>
|
||||
</template>
|
||||
<!-- 비/선택 Row를 토글용 -->
|
||||
<!-- 비/선택 Row 토글용 -->
|
||||
<template #cell(rowSelect)="{ rowSelected }">
|
||||
<template v-if="rowSelected"> ✓ </template>
|
||||
<template v-else> </template>
|
||||
</template>
|
||||
<!-- Row의 Index를 이용한 번호 출력 -->
|
||||
<!-- Row의 Index 이용한 번호 출력용 -->
|
||||
<template #cell(id)="row">
|
||||
<b-link ref="edit/{{row.item.id}}">
|
||||
{{ total - (page * perPage + row.index) + perPage }}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user