fix:修复自定义属性新增功能 (#108)

* fix:修复自定义属性新增功能

* fix: 修复MetaHtmlText组件控制台警告

* fix:调整透传Attributes警告解决方案

* fix:调整透传Attributes警告解决方案

* fix:调整透传Attributes警告解决方案
This commit is contained in:
lizhijie429 2023-11-30 14:23:10 +08:00 committed by GitHub
parent 1e72976c4c
commit 3ae47c811b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 3 deletions

View File

@ -49,11 +49,12 @@
<script>
import { reactive, ref, watchEffect } from 'vue'
import { useProperties, useResource } from '@opentiny/tiny-engine-controller'
import { IconDel, IconEdit, IconClose } from '@opentiny/vue-icon'
import { Form, FormItem, Input, Button, Popover } from '@opentiny/vue'
import { IconDel, IconEdit, IconClose, IconPlus } from '@opentiny/vue-icon'
import { Form, FormItem, Input, Button, Popover, Tooltip } from '@opentiny/vue'
import { utils } from '@opentiny/tiny-engine-utils'
export default {
inheritAttrs: false,
components: {
TinyForm: Form,
TinyFormItem: FormItem,
@ -62,7 +63,9 @@ export default {
IconEdit: IconEdit(),
IconDel: IconDel(),
TinyPopover: Popover,
IconClose: IconClose()
IconClose: IconClose(),
IconPlus: IconPlus(),
TinyTooltip: Tooltip
},
props: {
modelValue: {

View File

@ -19,6 +19,7 @@ import { useProperties } from '@opentiny/tiny-engine-controller'
import MetaInput from './MetaInput.vue'
export default {
inheritAttrs: false,
components: {
MetaInput
},