gitea push
This commit is contained in:
+6
-3
@@ -315,7 +315,9 @@ export const VSelect = genericComponent()({
|
||||
}
|
||||
if (listRef.value && isFocused.value) {
|
||||
const index = getSelectedFocusableIndex();
|
||||
listRef.value.focus(index >= 0 ? index : 'first');
|
||||
listRef.value.focus(index >= 0 ? index : 'first', {
|
||||
focusVisible: false
|
||||
});
|
||||
}
|
||||
}
|
||||
function onAfterLeave() {
|
||||
@@ -411,7 +413,6 @@ export const VSelect = genericComponent()({
|
||||
"modelValue": menu.value,
|
||||
"onUpdate:modelValue": $event => menu.value = $event,
|
||||
"activator": "parent",
|
||||
"contentClass": "v-select__content",
|
||||
"disabled": menuDisabled.value,
|
||||
"eager": props.eager,
|
||||
"maxHeight": 310,
|
||||
@@ -420,7 +421,9 @@ export const VSelect = genericComponent()({
|
||||
"transition": props.transition,
|
||||
"onAfterEnter": onAfterEnter,
|
||||
"onAfterLeave": onAfterLeave
|
||||
}, computedMenuProps.value), {
|
||||
}, computedMenuProps.value, {
|
||||
"contentClass": ['v-select__content', computedMenuProps.value.contentClass]
|
||||
}), {
|
||||
default: () => [_createVNode(VSheet, {
|
||||
"elevation": props.menuElevation,
|
||||
"onFocusin": onFocusin,
|
||||
|
||||
Reference in New Issue
Block a user