Skip to content

Commit 17c06c0

Browse files
committed
Fixed examples to work in internet explorer (replaces template string syntax) (sagalbot#703)
1 parent 3d6d097 commit 17c06c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dev/dev.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
<v-select placeholder="filtering with fuse.js" label="title" :options="fuseSearchOptions" :filter="fuseSearch">
7676
<template slot="option" scope="option">
7777
<strong>{{ option.title }}</strong><br>
78-
<em>{{ `${option.author.firstName} ${option.author.lastName}` }}</em>
78+
<em>{{ option.author.firstName + ' ' + option.author.lastName }}</em>
7979
</template>
8080
</v-select>
8181
<v-select placeholder="Vue select with no options and a custom no-option span" >

0 commit comments

Comments
 (0)