@vue/server-renderer 3.6.0-alpha.7 → 3.6.0-beta.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @vue/server-renderer
2
2
 
3
- **Note: as of 3.2.13+, this package is included as a dependency of the main `vue` package and can be accessed as `vue/server-renderer`. This means you no longer need to explicitly install this package and ensure its version match that of `vue`'s. Just use the `vue/server-renderer` deep import instead.**
3
+ **Note: as of 3.2.13+, this package is included as a dependency of the main `vue` package and can be accessed as `vue/server-renderer`. This means you no longer need to explicitly install this package and ensure its version matches that of `vue`'s. Just use the `vue/server-renderer` deep import instead.**
4
4
 
5
5
  ## Basic API
6
6
 
@@ -165,7 +165,7 @@ renderToSimpleStream(
165
165
  push(chunk) {
166
166
  if (chunk === null) {
167
167
  // done
168
- console(`render complete: ${res}`)
168
+ console.log(`render complete: ${res}`)
169
169
  } else {
170
170
  res += chunk
171
171
  }