Created
November 22, 2020 21:59
-
-
Save dmjcomdem/f6f579eabd9f3aac269d419082e30736 to your computer and use it in GitHub Desktop.
Расширение для компонента библиотеки
This file contains hidden or 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
<template> | |
<q-select | |
v-on="$listeners" | |
v-bind="Object.assign($attrs, $props, { dense: true, outlined: true })" | |
value="" | |
> | |
<template v-for="(_, slot) of $scopedSlots" v-slot:[slot]="scope"> | |
<slot :name="slot" v-bind="scope"></slot> | |
</template> | |
</q-select> | |
</template> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment