From 0cfdce7456dd57dc503c01cc6496f5cfa98bd3e3 Mon Sep 17 00:00:00 2001 From: robonen Date: Fri, 15 Aug 2025 04:38:46 +0700 Subject: [PATCH] docs(web/vue): update examples in unrefElement documentation to include type parameters --- web/vue/src/composables/unrefElement/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/vue/src/composables/unrefElement/index.ts b/web/vue/src/composables/unrefElement/index.ts index 3089e63..2cca254 100644 --- a/web/vue/src/composables/unrefElement/index.ts +++ b/web/vue/src/composables/unrefElement/index.ts @@ -18,11 +18,11 @@ export type UnRefElementReturn = T extend * @returns {UnRefElementReturn} - The unwrapped element or undefined. * * @example - * const element = useTemplateRef('element'); + * const element = useTemplateRef('element'); * const result = unrefElement(element); // result is the element instance * * @example - * const component = useTemplateRef('component'); + * const component = useTemplateRef('component'); * const result = unrefElement(component); // result is the component instance * * @since 0.0.11