vue更新3.5,以及mime打更新

This commit is contained in:
2024-09-06 10:48:22 +08:00
parent 9984041eec
commit 3914762c85
117 changed files with 4348 additions and 8000 deletions

View File

@@ -1,37 +1,38 @@
<!--
- MineAdmin is committed to providing solutions for quickly building web applications
- Please view the LICENSE file that was distributed with this source code,
- For the full copyright and license information.
- Thank you very much for using MineAdmin.
-
- @Author X.Mo<root@imoi.cn>
- @Link https://gitee.com/xmo/mineadmin-vue
- @Author XXX
- @Link XXX
-->
<template>
<slot :name="`form-${props.component.dataIndex}`" v-bind="props.component">
<a-divider
v-if="typeof props.component.display == 'undefined' || props.component.display === true"
:class="[props.component.customClass]"
:margin="props.component.margin"
:direction="props.component.direction"
:orientation="props.component.orientation"
:type="props.component.type"
:size="props.component.size"
>
{{ props.component?.title ?? "" }}
</a-divider>
</slot>
<div>
<slot :name="`form-${props.component.dataIndex}`" v-bind="props.component">
<a-divider
v-if="typeof props.component.display == 'undefined' || props.component.display === true"
:class="[props.component.customClass]"
:margin="props.component.margin"
:direction="props.component.direction"
:orientation="props.component.orientation"
:type="props.component.type"
:size="props.component.size"
>
{{ props.component?.title ?? "" }}
</a-divider>
</slot>
</div>
</template>
<script setup>
import { onMounted } from "vue"
import { maEvent } from "../js/formItemMixin.js"
import { onMounted, inject } from "vue"
import { runEvent } from "../js/event.js"
const props = defineProps({
component: Object
})
maEvent.handleCommonEvent(props.component, "onCreated")
onMounted(() => {
maEvent.handleCommonEvent(props.component, "onMounted")
})
const formModel = inject("formModel")
const getColumnService = inject("getColumnService")
const columns = inject("columns")
const rv = async (ev, value = undefined) =>
await runEvent(props.component, ev, { formModel, getColumnService, columns }, value)
rv("onCreated")
onMounted(() => rv("onMounted"))
</script>