We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b6558b commit 830b3b2Copy full SHA for 830b3b2
src/vue.ts
@@ -60,11 +60,14 @@ export interface VueStatic {
60
/** @internal */
61
__vccOpts: ComponentOptions
62
63
- // --- Vue Loader injections
+ // --- Vue Loader etc injections
64
65
66
render?: () => VNode | void
67
68
+ /** @internal */
69
+ ssrRender?: () => void
70
+
71
72
__file?: string
73
@@ -250,6 +253,7 @@ class VueImpl {
250
253
// from Vue Loader
251
254
const injections = [
252
255
'render',
256
+ 'ssrRender',
257
'__file',
258
'__cssModules',
259
'__scopeId',
0 commit comments