File tree Expand file tree Collapse file tree 1 file changed +31
-13
lines changed Expand file tree Collapse file tree 1 file changed +31
-13
lines changed Original file line number Diff line number Diff line change 44 "de": {
55 "loginText": "Login",
66 "signupText": "Unverbindliche Anfrage"
7- },
7+ },
88 "fr": {
99 "loginText": "Login",
1010 "signupText": "Demande sans engagement"
1414<!-- eslint-enable -->
1515
1616<template >
17- <div >
18- <v-btn small text color =" primary" >
19- <router-link :to =" '/' + $i18n.locale + '/login'" >{{ $t('loginText') }}</router-link >
20- </v-btn >
21- <v-btn small outlined color =" primary" >
22- <router-link key =" signup" :to =" '/' + $i18n.locale + '/signup'" >
23- {{ $t('signupText') }}
24- </router-link >
25- </v-btn >
26- </div >
17+ <div v-if =" vertical" >
18+ <v-btn small text color =" white" class =" mt-4" >
19+ <router-link :to =" '/' + $i18n.locale + '/login'" >{{ $t('loginText') }}</router-link >
20+ </v-btn ><br >
21+ <v-btn small outlined color =" white" class =" mt-4" >
22+ <router-link key =" signup" :to =" '/' + $i18n.locale + '/signup'" >
23+ {{ $t('signupText') }}
24+ </router-link >
25+ </v-btn >
26+ </div >
27+ <div v-else >
28+ <v-btn small text color =" primary" >
29+ <router-link :to =" '/' + $i18n.locale + '/login'" >{{ $t('loginText') }}</router-link >
30+ </v-btn >
31+ <v-btn small outlined color =" primary" >
32+ <router-link key =" signup" :to =" '/' + $i18n.locale + '/signup'" >
33+ {{ $t('signupText') }}
34+ </router-link >
35+ </v-btn >
36+ </div >
2737</template >
2838
29- <style >
30- </style >
39+ <script >
40+ export default {
41+ name: ' UserActions' ,
42+ data () {
43+ return {
44+ };
45+ },
46+ props: [' vertical' ]
47+ };
48+ </script >
You can’t perform that action at this time.
0 commit comments