File tree Expand file tree Collapse file tree 7 files changed +5
-12
lines changed Expand file tree Collapse file tree 7 files changed +5
-12
lines changed Original file line number Diff line number Diff line change @@ -10,8 +10,9 @@ export default {
1010 default: ' Button Text' ,
1111 },
1212 },
13+ emits: {click: null },
1314 methods: {
14- handleClick (e ) {
15+ handleClick (_e ) {
1516 this .$emit (' click' )
1617 },
1718 },
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ export default {
1515 }
1616 },
1717 methods: {
18- handleClick (e ) {
18+ handleClick (_ ) {
1919 this .displayElement = ! this .displayElement
2020 },
2121 },
Original file line number Diff line number Diff line change 4141
4242<script >
4343export default {
44+ emits: {submit: null },
4445 data () {
4546 return {
4647 title: ' ' ,
@@ -49,13 +50,11 @@ export default {
4950 recommend: false ,
5051 }
5152 },
52-
5353 computed: {
5454 submitDisabled () {
5555 return ! this .title || ! this .review
5656 },
5757 },
58-
5958 methods: {
6059 submit () {
6160 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'
77
88export default {
99 name: ' Stubs' ,
10-
1110 components: {
1211 Directive,
1312 },
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 88 </v-card >
99 </v-dialog >
1010 <v-menu bottom offset-y >
11- <template v-slot : activator =" {on } " >
11+ <template # activator =" {on } " >
1212 <v-btn icon v-on =" on" >open menu</v-btn >
1313 </template >
1414 <v-list >
You can’t perform that action at this time.
0 commit comments