diff --git a/package.json b/package.json index 1dc5875..b5b5a66 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vue-tippy", - "version": "6.1.0-beta.1", + "version": "6.1.0-beta.2", "main": "index.js", "module": "dist/vue-tippy.mjs", "unpkg": "dist/vue-tippy.iife.js", diff --git a/src/components/Tippy.ts b/src/components/Tippy.ts index 9c01895..8451420 100644 --- a/src/components/Tippy.ts +++ b/src/components/Tippy.ts @@ -20,11 +20,11 @@ const TippyComponent = defineComponent({ type: [String, Function] as PropType, }, tag: { - type: String, + type: [String, Object], default: 'span' }, contentTag: { - type: String, + type: [String, Object], default: 'span' }, contentClass: {