Skip to content

Replaced html anchors with <router-link> #18

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 30, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions frontend/src/components/Hello.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
<h3>This site contains more stuff :)</h3>
<ul>
<li>HowTo call REST-Services:</li>
<li><a href="/#/callservice/" target="_blank">/callservice</a></li>
<li><router-link :to="{ name: 'Service' }" exact target="_blank">/callservice</router-link></li>
<li>HowTo to play around with Bootstrap UI components:</li>
<li><a href="/#/bootstrap/" target="_blank">/bootstrap</a></li>
<li><router-link :to="{ name: 'Bootstrap' }" exact target="_blank">/bootstrap</router-link></li>
<li>HowTo to interact with the Spring Boot database backend:</li>
<li><a href="/#/user/" target="_blank">/user</a></li>
<li><router-link :to="{ name: 'User' }" exact target="_blank">/user</router-link></li>
</ul>
</div>
</template>
Expand Down