Li Kui
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
8 deletions
-
src/components/Form/src/components/FormAction.vue
|
|
|
@ -14,13 +14,7 @@ |
|
|
|
</Button> |
|
|
|
<slot name="submitBefore"></slot> |
|
|
|
|
|
|
|
<Button |
|
|
|
type="primary" |
|
|
|
class="mr-2" |
|
|
|
v-bind="getSubmitBtnOptions" |
|
|
|
@click="submitAction" |
|
|
|
v-if="showSubmitButton" |
|
|
|
> |
|
|
|
<Button type="primary" class="mr-2" v-bind="getSubmitBtnOptions" v-if="showSubmitButton"> |
|
|
|
{{ getSubmitBtnOptions.text }} |
|
|
|
</Button> |
|
|
|
|
|
|
|
@ -41,7 +35,6 @@ |
|
|
|
</template> |
|
|
|
<script lang="ts"> |
|
|
|
import type { ColEx } from '../types/index'; |
|
|
|
//import type { ButtonProps } from 'ant-design-vue/es/button/buttonTypes'; |
|
|
|
import { defineComponent, computed, PropType } from 'vue'; |
|
|
|
import { Form, Col } from 'ant-design-vue'; |
|
|
|
import { Button, ButtonProps } from '/@/components/Button'; |
|
|
|
|