We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19c97d8 commit 74ff6dcCopy full SHA for 74ff6dc
packages/vuetify/src/services/breakpoint/index.ts
@@ -1,3 +1,6 @@
1
+import { reactive } from 'vue'
2
+
3
4
// Extensions
5
import { Service } from '../service'
6
@@ -72,6 +75,8 @@ export class Breakpoint extends Service implements IBreakpoint {
72
75
this.mobileBreakpoint = mobileBreakpoint
73
76
this.scrollBarWidth = scrollBarWidth
74
77
this.thresholds = thresholds
78
79
+ return reactive(this)
80
}
81
82
public init () {
0 commit comments