Skip to content

Commit 60c4b64

Browse files
committed
Fix data function in stubs.
1 parent 85e41de commit 60c4b64

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Stubs/Component.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
mixins: [],
1010
11-
data: function () {
11+
data () {
1212
return {
1313
//
1414
}

src/Stubs/Mixin.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
export default {
22
components: {},
33

4-
data: function () {
4+
data () {
55
return {
66
//
77
}
@@ -26,4 +26,4 @@ export default {
2626
methods: {
2727
//
2828
}
29-
};
29+
};

0 commit comments

Comments
 (0)