fix: import name

This commit is contained in:
Shivam Mishra
2025-05-07 19:32:22 +05:30
parent db50f42054
commit 2d5993dfe3
+2 -2
View File
@@ -1,4 +1,4 @@
import { h, createCustomElement } from 'vue';
import { h, defineCustomElement } from 'vue';
const ChatButton = {
name: 'ChatButton',
@@ -25,4 +25,4 @@ const ChatButton = {
},
};
export const buttonElement = createCustomElement(ChatButton);
export const buttonElement = defineCustomElement(ChatButton);