forked from opentiny/tiny-engine
fix:修复自定义属性新增功能 (#108)
* fix:修复自定义属性新增功能 * fix: 修复MetaHtmlText组件控制台警告 * fix:调整透传Attributes警告解决方案 * fix:调整透传Attributes警告解决方案 * fix:调整透传Attributes警告解决方案
This commit is contained in:
parent
1e72976c4c
commit
3ae47c811b
|
@ -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: {
|
||||
|
|
|
@ -19,6 +19,7 @@ import { useProperties } from '@opentiny/tiny-engine-controller'
|
|||
import MetaInput from './MetaInput.vue'
|
||||
|
||||
export default {
|
||||
inheritAttrs: false,
|
||||
components: {
|
||||
MetaInput
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue