mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-06 16:37:18 +08:00
chore: update
This commit is contained in:
parent
0d0d33ca29
commit
a4e4045abd
@ -270,7 +270,7 @@ const tableData: User[] = [
|
||||
}"
|
||||
>
|
||||
<p class="font-medium pt-1">Echart</p>
|
||||
<Line class="echart" style="margin: 0 auto" />
|
||||
<Line class="echart" style="margin: 0 auto; height: 300px" />
|
||||
</el-col>
|
||||
|
||||
<el-col
|
||||
|
@ -1,5 +1,5 @@
|
||||
import { ref, computed } from "vue";
|
||||
import { tableDataEdit } from "../data";
|
||||
import { ref, computed, Transition } from "vue";
|
||||
import { message } from "@pureadmin/components";
|
||||
import { clone, delay } from "@pureadmin/utils";
|
||||
|
||||
@ -51,11 +51,13 @@ export function useColumns() {
|
||||
onMouseleave={() => onMouseleave(index)}
|
||||
>
|
||||
<p v-show={!editing.value(index)}>{row.id}</p>
|
||||
<el-input
|
||||
v-show={editing.value(index)}
|
||||
modelValue={comVal.value(index)}
|
||||
onInput={value => onChange(value, index)}
|
||||
/>
|
||||
<Transition enter-active-class="animate__animated animate__fadeInUp animate__faster">
|
||||
<el-input
|
||||
v-show={editing.value(index)}
|
||||
modelValue={comVal.value(index)}
|
||||
onInput={value => onChange(value, index)}
|
||||
/>
|
||||
</Transition>
|
||||
<iconify-icon-offline
|
||||
v-show={editing.value(index)}
|
||||
icon="check"
|
||||
|
Loading…
x
Reference in New Issue
Block a user