2
0
mirror of https://github.com/tenrok/vue-select.git synced 2026-05-17 02:29:37 +03:00

Fixed examples to work in internet explorer (replaces template string syntax) (#703)

This commit is contained in:
Marek Meyer
2018-11-17 10:57:28 +01:00
parent 3d6d097125
commit 17c06c08b0
+1 -1
View File
@@ -75,7 +75,7 @@
<v-select placeholder="filtering with fuse.js" label="title" :options="fuseSearchOptions" :filter="fuseSearch">
<template slot="option" scope="option">
<strong>{{ option.title }}</strong><br>
<em>{{ `${option.author.firstName} ${option.author.lastName}` }}</em>
<em>{{ option.author.firstName + ' ' + option.author.lastName }}</em>
</template>
</v-select>
<v-select placeholder="Vue select with no options and a custom no-option span" >