Skip to content

Commit 2aba7a1

Browse files
author
Nicolò Maria Mezzopera
committed
fix: correct typo that prevented mixin load
1 parent ea9ef24 commit 2aba7a1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/components/LControlLayers.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import Control from '../mixins/Control.js';
44
55
export default {
66
name: 'LControlLayers',
7-
mnixins: [Control],
7+
mixins: [Control],
88
props: {
99
collapsed: {
1010
type: Boolean,

src/components/LControlScale.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import Control from '../mixins/Control.js';
44
55
export default {
66
name: 'LControlScale',
7-
mnixins: [Control],
7+
mixins: [Control],
88
props: {
99
maxWidth: {
1010
type: Number,

src/components/LControlZoom.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import Control from '../mixins/Control.js';
44
55
export default {
66
name: 'LControlZoom',
7-
mnixins: [Control],
7+
mixins: [Control],
88
props: {
99
zoomInText: {
1010
type: String,

0 commit comments

Comments
 (0)