mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
Always prefer <nuxt-link> over <a>
@ogerly, if we link into another page of our application, we should always use `nuxt-link`. It is a feature of NuxtJs and it does prefetching, among other things. So it improves the performance of our site!
This commit is contained in:
parent
48454dda56
commit
17743043ca
@ -94,14 +94,14 @@
|
||||
</ds-container>
|
||||
<div id="footer" class="ds-footer">
|
||||
<a href="https://human-connection.org" target="_blank" v-html="$t('site.made')"></a>
|
||||
⏐
|
||||
<a href="/imprint">{{ $t('site.imprint') }}</a>
|
||||
-
|
||||
<nuxt-link to="/imprint">{{ $t('site.imprint') }}</nuxt-link>
|
||||
‑
|
||||
<a href="/terms-and-conditions">{{ $t('site.termsAc') }}</a>
|
||||
<nuxt-link to="/terms-and-conditions">{{ $t('site.termsAc') }}</nuxt-link>
|
||||
‑
|
||||
<a href="/privacy">{{ $t('site.privacy') }}</a>
|
||||
<nuxt-link to="/privacy">{{ $t('site.privacy') }}</nuxt-link>
|
||||
‑
|
||||
<a href="/changelog">{{ $t('site.changelog') }}</a>
|
||||
<nuxt-link to="/changelog">{{ $t('site.changelog') }}</nuxt-link>
|
||||
</div>
|
||||
<div id="overlay" />
|
||||
<no-ssr>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user