We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b604936 commit 5f09e64Copy full SHA for 5f09e64
packages/component/component/popper/usePopper/usePopper.ts
@@ -17,7 +17,7 @@ export function usePopper(
17
options: UsePopperOptions = {},
18
) {
19
const customMiddleware = computed(() => unref(options.middleware));
20
- const customStrategy = computed(() => unref(options.strategy) || "absolute");
+ const customStrategy = computed(() => unref(options.strategy) || "fixed");
21
const customPlacement = computed(() => unref(options.placement) || "bottom");
22
23
const referenceElement = computed(() => unRefRealElement(reference.value));
0 commit comments