-
-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ui/docs): add disable-tab-select to q-select component along wit… (
#17362) feat(ui/docs): add disable-tab-select to q-select component along with supporting documentation
- Loading branch information
1 parent
e3118f7
commit 79e949f
Showing
4 changed files
with
43 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<template> | ||
<div class="q-pa-md" style="max-width: 300px"> | ||
<div class="q-gutter-md"> | ||
<q-select | ||
filled | ||
v-model="model" | ||
:options="options" | ||
stack-label | ||
disable-tab-selection | ||
label="Standard" | ||
/> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
import { ref } from 'vue' | ||
export default { | ||
setup () { | ||
return { | ||
model: ref(null), | ||
options: [ | ||
'Google', 'Facebook', 'Twitter', 'Apple', 'Oracle' | ||
] | ||
} | ||
} | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters