From b74b4d3dc5813e3ed6e59f3d6ecbc221d3a1da93 Mon Sep 17 00:00:00 2001 From: Tove <36701898+Taelkir@users.noreply.github.com> Date: Wed, 11 Jun 2025 11:24:00 +0100 Subject: [PATCH] fix: docs typo undefind vs undefined --- docs/props/positioning/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/props/positioning/index.html b/docs/props/positioning/index.html index 1d3b1866..ae89eef4 100644 --- a/docs/props/positioning/index.html +++ b/docs/props/positioning/index.html @@ -38,7 +38,7 @@ import { ref } from 'vue'; const date = ref(new Date()); -</script>
If you have issues with the menu being miss-placed, you can use custom function that can position the menu to your liking
(el: HTMLElement | undefind) => Record<string, any> | string
null
<template>
+</script>
If you have issues with the menu being miss-placed, you can use custom function that can position the menu to your liking
(el: HTMLElement | undefined) => Record<string, any> | string
null
<template>
<VueDatePicker v-model="date" :alt-position="customPosition" />
</template>
@@ -67,4 +67,4 @@