Socket
Socket
Sign inDemoInstall

@vue/server-renderer

Package Overview
Dependencies
Maintainers
2
Versions
227
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vue/server-renderer - npm Package Compare versions

Comparing version 3.5.0-beta.2 to 3.5.0-beta.3

12

dist/server-renderer.cjs.js
/**
* @vue/server-renderer v3.5.0-beta.2
* @vue/server-renderer v3.5.0-beta.3
* (c) 2018-present Yuxi (Evan) You and Vue contributors

@@ -734,3 +734,6 @@ * @license MIT

function renderVNode(push, vnode, parentComponent, slotScopeId) {
const { type, shapeFlag, children } = vnode;
const { type, shapeFlag, children, dirs, props } = vnode;
if (dirs) {
vnode.props = applySSRDirectives(vnode, props, dirs);
}
switch (type) {

@@ -786,7 +789,4 @@ case Vue.Text:

const tag = vnode.type;
let { props, children, shapeFlag, scopeId, dirs } = vnode;
let { props, children, shapeFlag, scopeId } = vnode;
let openTag = `<${tag}`;
if (dirs) {
props = applySSRDirectives(vnode, props, dirs);
}
if (props) {

@@ -793,0 +793,0 @@ openTag += ssrRenderAttrs(props, tag);

/**
* @vue/server-renderer v3.5.0-beta.2
* @vue/server-renderer v3.5.0-beta.3
* (c) 2018-present Yuxi (Evan) You and Vue contributors

@@ -466,3 +466,6 @@ * @license MIT

function renderVNode(push, vnode, parentComponent, slotScopeId) {
const { type, shapeFlag, children } = vnode;
const { type, shapeFlag, children, dirs, props } = vnode;
if (dirs) {
vnode.props = applySSRDirectives(vnode, props, dirs);
}
switch (type) {

@@ -518,7 +521,4 @@ case Vue.Text:

const tag = vnode.type;
let { props, children, shapeFlag, scopeId, dirs } = vnode;
let { props, children, shapeFlag, scopeId } = vnode;
let openTag = `<${tag}`;
if (dirs) {
props = applySSRDirectives(vnode, props, dirs);
}
if (props) {

@@ -525,0 +525,0 @@ openTag += ssrRenderAttrs(props, tag);

/**
* @vue/server-renderer v3.5.0-beta.2
* @vue/server-renderer v3.5.0-beta.3
* (c) 2018-present Yuxi (Evan) You and Vue contributors

@@ -838,3 +838,6 @@ * @license MIT

function renderVNode(push, vnode, parentComponent, slotScopeId) {
const { type, shapeFlag, children } = vnode;
const { type, shapeFlag, children, dirs, props } = vnode;
if (dirs) {
vnode.props = applySSRDirectives(vnode, props, dirs);
}
switch (type) {

@@ -890,7 +893,4 @@ case Text:

const tag = vnode.type;
let { props, children, shapeFlag, scopeId, dirs } = vnode;
let { props, children, shapeFlag, scopeId } = vnode;
let openTag = `<${tag}`;
if (dirs) {
props = applySSRDirectives(vnode, props, dirs);
}
if (props) {

@@ -897,0 +897,0 @@ openTag += ssrRenderAttrs(props, tag);

{
"name": "@vue/server-renderer",
"version": "3.5.0-beta.2",
"version": "3.5.0-beta.3",
"description": "@vue/server-renderer",

@@ -49,8 +49,8 @@ "main": "index.js",

"peerDependencies": {
"vue": "3.5.0-beta.2"
"vue": "3.5.0-beta.3"
},
"dependencies": {
"@vue/compiler-ssr": "3.5.0-beta.2",
"@vue/shared": "3.5.0-beta.2"
"@vue/shared": "3.5.0-beta.3",
"@vue/compiler-ssr": "3.5.0-beta.3"
}
}

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc