Skip to content

Instantly share code, notes, and snippets.

@dmjcomdem
Created November 22, 2020 21:59
Show Gist options
  • Save dmjcomdem/f6f579eabd9f3aac269d419082e30736 to your computer and use it in GitHub Desktop.
Save dmjcomdem/f6f579eabd9f3aac269d419082e30736 to your computer and use it in GitHub Desktop.
Расширение для компонента библиотеки
<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