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
// conditions map | |
$condMap: ( | |
"screen": "only screen", | |
"print": "only print", | |
"retina": "(-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 120dpi)" | |
); | |
//set value by key in scss map | |
@function map-set($map, $key, $value) { | |
$new: ($key: $value); |
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
<template> | |
<multiselect | |
ref="originalMultiselect" | |
v-bind="$attrs" | |
v-on="listeners" | |
class="position-relative"/> | |
</template> | |
<script> | |
import Multiselect from 'vue-multiselect' |