Skip to content

Commit

Permalink
fix:修复自定义属性新增功能 (#108)
Browse files Browse the repository at this point in the history
* fix:修复自定义属性新增功能

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

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

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

* fix:调整透传Attributes警告解决方案
  • Loading branch information
lizhijie429 authored Nov 30, 2023
1 parent 1e72976 commit 3ae47c8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
9 changes: 6 additions & 3 deletions packages/common/component/MetaHtmlAttributes.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -62,7 +63,9 @@ export default {
IconEdit: IconEdit(),
IconDel: IconDel(),
TinyPopover: Popover,
IconClose: IconClose()
IconClose: IconClose(),
IconPlus: IconPlus(),
TinyTooltip: Tooltip
},
props: {
modelValue: {
Expand Down
1 change: 1 addition & 0 deletions packages/common/component/MetaHtmlText.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import { useProperties } from '@opentiny/tiny-engine-controller'
import MetaInput from './MetaInput.vue'
export default {
inheritAttrs: false,
components: {
MetaInput
},
Expand Down

0 comments on commit 3ae47c8

Please sign in to comment.