File tree 7 files changed +12
-20
lines changed
7 files changed +12
-20
lines changed Original file line number Diff line number Diff line change @@ -142,7 +142,7 @@ See the [Features](#features) for more functionalities
142
142
- [x] tslint
143
143
- [x] eslint
144
144
- [x] linting before ` build`
145
- - [x] backend contracts in a npm package
145
+ - [x] backend contracts in an NPM package
146
146
147
147
Have a look [Trello Board](https://trello.com/b/6JN23G7A/boiler-plate) for more coming functionality
148
148
Original file line number Diff line number Diff line change 8
8
</p >
9
9
<div class =" box" >
10
10
<ValidationObserver v-slot =" { passes }" tag =" form" >
11
- <FieldWithValue
12
- v-if =" !!email"
13
- :value =" email"
14
- :label =" $t('common.field.email')"
15
- :disabled =" true"
16
- label-position =" on-border"
17
- class =" has-margin-bottom-15"
18
- />
19
-
20
11
<InputWithValidation
21
- v-else
12
+ v-if = " !email "
22
13
v-model =" credentials.email"
23
14
:label =" $t('common.field.email')"
24
15
:placeholder =" $t('common.field.emailPlaceholder')"
34
25
input-type =" password"
35
26
:label =" $t('common.field.password')"
36
27
:placeholder =" $t('common.field.passwordPlaceholder')"
37
- rules =" required|min:4|confirmed:confirmedPassword "
28
+ rules =" required|min:4"
38
29
vid =" password"
39
30
label-position =" on-border"
40
31
class =" has-margin-5"
45
36
input-type =" password"
46
37
:label =" $t('common.field.confirmPassword')"
47
38
:placeholder =" $t('common.field.confirmPasswordPlaceholder')"
48
- rules =" required"
39
+ rules =" required|confirmed:password "
49
40
vid =" confirmedPassword"
50
41
label-position =" on-border"
51
42
class =" has-margin-5"
Original file line number Diff line number Diff line change 33
33
34
34
<script lang="ts">
35
35
import { Component , Vue } from ' nuxt-property-decorator'
36
- import SocialShare from ' ~/components/ui/social/SocialShare.vue'
37
36
import { Routes } from ' ~/types'
38
37
39
38
@Component ({
40
- components: { SocialShare }
39
+ components: {}
41
40
})
42
41
export default class TopImage extends Vue {
43
42
get routes () {
Original file line number Diff line number Diff line change 5
5
icon =" share-variant"
6
6
type =" is-primary"
7
7
/>
8
- <small class =" has-text-primary" > Share</small >
8
+ <small class =" has-text-primary has-margin-left-5 " > {{ $t('common. Share') }} </small >
9
9
</template >
10
10
11
11
<b-navbar-item >
Original file line number Diff line number Diff line change @@ -50,8 +50,6 @@ export default class SocialShare extends Vue {
50
50
}
51
51
}
52
52
53
- console .log (' LINK' , link )
54
-
55
53
return link
56
54
.replace (/ @u/ g , encodeURIComponent (this .pageMeta .url ))
57
55
.replace (/ @t/ g , encodeURIComponent (this .pageMeta .title ))
Original file line number Diff line number Diff line change @@ -39,7 +39,9 @@ const messages = {
39
39
search : 'Search' ,
40
40
follow : 'Follow' ,
41
41
unfollow : 'Unfollow' ,
42
- refresh : 'refresh'
42
+ refresh : 'refresh' ,
43
+ share : 'share' ,
44
+ Share : 'Share'
43
45
} ,
44
46
45
47
topNavbar : {
Original file line number Diff line number Diff line change @@ -40,7 +40,9 @@ const messages = {
40
40
search : 'Ara' ,
41
41
follow : 'Takip Et' ,
42
42
unfollow : 'Takip Etme' ,
43
- refresh : 'yenile'
43
+ refresh : 'yenile' ,
44
+ share : 'paylas' ,
45
+ Share : 'Paylas'
44
46
} ,
45
47
46
48
topNavbar : {
You can’t perform that action at this time.
0 commit comments