Skip to content

Commit 3cf2115

Browse files
committed
Change extends to mixins
1 parent e2a0117 commit 3cf2115

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/hideAt.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
export default {
77
name: 'hide-at',
8-
extends: {...withBreakpoint},
8+
mixins: [withBreakpoint],
99
props: {
1010
breakpoint: {
1111
type: String,

src/components/showAt.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
export default {
77
name: 'show-at',
8-
extends: {...withBreakpoint},
8+
mixins: [withBreakpoint],
99
props: {
1010
breakpoint: {
1111
type: String,

0 commit comments

Comments
 (0)