Skip to content

Commit 74ff6dc

Browse files
committed
fix breakpoint reactivity
1 parent 19c97d8 commit 74ff6dc

File tree

1 file changed

+5
-0
lines changed
  • packages/vuetify/src/services/breakpoint

1 file changed

+5
-0
lines changed

packages/vuetify/src/services/breakpoint/index.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
import { reactive } from 'vue'
2+
3+
14
// Extensions
25
import { Service } from '../service'
36

@@ -72,6 +75,8 @@ export class Breakpoint extends Service implements IBreakpoint {
7275
this.mobileBreakpoint = mobileBreakpoint
7376
this.scrollBarWidth = scrollBarWidth
7477
this.thresholds = thresholds
78+
79+
return reactive(this)
7580
}
7681

7782
public init () {

0 commit comments

Comments
 (0)