File tree 7 files changed +5
-12
lines changed
7 files changed +5
-12
lines changed Original file line number Diff line number Diff line change @@ -10,8 +10,9 @@ export default {
10
10
default: ' Button Text' ,
11
11
},
12
12
},
13
+ emits: {click: null },
13
14
methods: {
14
- handleClick (e ) {
15
+ handleClick (_e ) {
15
16
this .$emit (' click' )
16
17
},
17
18
},
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ export default {
15
15
}
16
16
},
17
17
methods: {
18
- handleClick (e ) {
18
+ handleClick (_ ) {
19
19
this .displayElement = ! this .displayElement
20
20
},
21
21
},
Original file line number Diff line number Diff line change 41
41
42
42
<script >
43
43
export default {
44
+ emits: {submit: null },
44
45
data () {
45
46
return {
46
47
title: ' ' ,
@@ -49,13 +50,11 @@ export default {
49
50
recommend: false ,
50
51
}
51
52
},
52
-
53
53
computed: {
54
54
submitDisabled () {
55
55
return ! this .title || ! this .review
56
56
},
57
57
},
58
-
59
58
methods: {
60
59
submit () {
61
60
if (this .submitDisabled ) return
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ import Directive from './Directive'
7
7
8
8
export default {
9
9
name: ' Stubs' ,
10
-
11
10
components: {
12
11
Directive,
13
12
},
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 8
8
</v-card >
9
9
</v-dialog >
10
10
<v-menu bottom offset-y >
11
- <template v-slot : activator =" {on } " >
11
+ <template # activator =" {on } " >
12
12
<v-btn icon v-on =" on" >open menu</v-btn >
13
13
</template >
14
14
<v-list >
You can’t perform that action at this time.
0 commit comments