File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 15
15
v-model =" q"
16
16
id =" seachField"
17
17
autofocus =" autofocus" >
18
- <a :href =" `#${q}` "
18
+ <a :href =" '#' + q "
19
19
v-show =" q.trim()"
20
20
title =" Link to this search"
21
21
class =" link" >
Original file line number Diff line number Diff line change 3
3
<h1 class =" thin" >Explore</h1 >
4
4
<ul >
5
5
<li v-for =" tag in coolStuff" >
6
- <a :href =" `#${ tag}` "
6
+ <a :href =" '#' + tag"
7
7
@click =" filterByTag(tag)" >{{ tag }}</a >
8
8
</li >
9
9
</ul >
Original file line number Diff line number Diff line change 12
12
<footer class =" thin" v-if =" item.tags" >
13
13
<ul >
14
14
<li v-for =" tag in item.tags" >
15
- <a :href =" `#${ tag}` " @click =" filterByTag(tag)" >{{ tag }}</a >
15
+ <a :href =" '#' + tag" @click =" filterByTag(tag)" >{{ tag }}</a >
16
16
</li >
17
17
</ul >
18
18
</footer >
You can’t perform that action at this time.
0 commit comments