Skip to content

Commit

Permalink
chore(workflow): 撤销vue-generator eslint文件修改
Browse files Browse the repository at this point in the history
  • Loading branch information
wenmine committed Nov 23, 2023
1 parent 8f0a0cd commit 5bf72c0
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ const state = vue.reactive({
]
},
slots: {
default: ({ row }) => (
default: ({ row }, h) => (
<div>
<TinyIconEdit></TinyIconEdit>
{props.isEdit && (
Expand Down Expand Up @@ -232,7 +232,7 @@ const state = vue.reactive({
{
title: '操作',
slots: {
default: ({ row }) => (
default: ({ row }, h) => (
<div
style="color: rgb(94,124, 224);cursor:pointer;"
text={t('operation.delete')}
Expand Down Expand Up @@ -335,7 +335,7 @@ const state = vue.reactive({
field: 'employees',
title: '员工数',
slots: {
default: () => <TinyInput></TinyInput>
default: ({ row, rowIndex }, h) => <TinyInput></TinyInput>
}
},
{
Expand All @@ -345,7 +345,7 @@ const state = vue.reactive({
{
title: '产品',
slots: {
default: () => (
default: ({ row }, h) => (
<div>
<TinySwitch modelValue=""></TinySwitch>
</div>
Expand All @@ -355,7 +355,7 @@ const state = vue.reactive({
{
title: '操作',
slots: {
default: ({ row }) => (
default: ({ row }, h) => (
<TinyButton text="删除" icon={TinyIconDel} onClick={(...eventArgs) => emit(eventArgs, row)}></TinyButton>
)
}
Expand Down

0 comments on commit 5bf72c0

Please sign in to comment.