We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c34f22 commit 92d6192Copy full SHA for 92d6192
types/test/vue-test.ts
@@ -13,6 +13,7 @@ class Test extends Vue {
13
this.$refs;
14
this.$slots;
15
this.$isServer;
16
+ this.$ssrContext;
17
}
18
19
// test property reification
types/vue.d.ts
@@ -42,6 +42,7 @@ export declare class Vue {
42
readonly $slots: { [key: string]: VNode[] };
43
readonly $scopedSlots: { [key: string]: ScopedSlot };
44
readonly $isServer: boolean;
45
+ readonly $ssrContext: any;
46
readonly $props: any;
47
48
$mount(elementOrSelector?: Element | String, hydrating?: boolean): this;
0 commit comments