Skip to content

Commit 653be1d

Browse files
authored
Merge pull request #18 from robertotru/master
Replaced html anchors with <router-link>
2 parents 9b62b9f + bae3c96 commit 653be1d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

frontend/src/components/Hello.vue

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
<h3>This site contains more stuff :)</h3>
1010
<ul>
1111
<li>HowTo call REST-Services:</li>
12-
<li><a href="/#/callservice/" target="_blank">/callservice</a></li>
12+
<li><router-link :to="{ name: 'Service' }" exact target="_blank">/callservice</router-link></li>
1313
<li>HowTo to play around with Bootstrap UI components:</li>
14-
<li><a href="/#/bootstrap/" target="_blank">/bootstrap</a></li>
14+
<li><router-link :to="{ name: 'Bootstrap' }" exact target="_blank">/bootstrap</router-link></li>
1515
<li>HowTo to interact with the Spring Boot database backend:</li>
16-
<li><a href="/#/user/" target="_blank">/user</a></li>
16+
<li><router-link :to="{ name: 'User' }" exact target="_blank">/user</router-link></li>
1717
</ul>
1818
</div>
1919
</template>

0 commit comments

Comments
 (0)