New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

vite-plugin-vue-jsx

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vite-plugin-vue-jsx - npm Package Compare versions

Comparing version 0.0.2 to 0.0.3

2

dist/jsx/index.js

@@ -54,3 +54,3 @@ import { isRef, vShow, withDirectives, createVNode, isVNode } from 'vue';

// children is slots
if (typeof last == 'object' && !isVNode(last)) {
if (Object.prototype.toString.call(last) == '[object Object]' && !isVNode(last)) {
for (let i in last) {

@@ -57,0 +57,0 @@ slots[i] = last[i];

{
"name": "vite-plugin-vue-jsx",
"version": "0.0.2",
"version": "0.0.3",
"description": "Support Vue directives in JSX of vite.",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

@@ -58,3 +58,3 @@ import { isRef, vShow, withDirectives , createVNode, isVNode } from 'vue'

// children is slots
if( typeof last == 'object' && !isVNode(last) ){
if( Object.prototype.toString.call(last) == '[object Object]' && !isVNode(last) ){
for(let i in last){

@@ -61,0 +61,0 @@ slots[i] = last[i]

Sorry, the diff of this file is not supported yet

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