Skip to content
Snippets Groups Projects
Commit 2f5e2203 authored by Florent Lavelle's avatar Florent Lavelle Committed by m431m
Browse files

router hotfix: fix router-link and clean (fix last commit)

parent 71968709
No related branches found
No related tags found
No related merge requests found
......@@ -18,7 +18,7 @@ const routes = [
{
path: '/:locale',
component: () => import('@/views/Base.vue'),
beforeEnter: (to, from, next) => {
beforeEnter: (to, from, next) => {
const locale = to.params.locale;
const supported_locales = process.env.VUE_APP_I18N_SUPPORTED_LOCALE.split(',');
......
......@@ -74,13 +74,13 @@
<div class="form-row">
<div class="btn-group-vertical">
<router-link
to="signup"
:to="{ name: 'SignUp' }"
custom
>
{{ $t('signin.noaccount') }} ?
</router-link>
<router-link
to="forgottenpwd"
:to="{ name: 'ForgottenPassword' }"
custom
>
{{ $t('signin.forgottenpassword') }} ?
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment