Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

vuetable

Package Overview
Dependencies
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vuetable - npm Package Compare versions

Comparing version 1.2.0 to 1.2.1

6

dist/vue-table.js

@@ -540,3 +540,3 @@ (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){

return {
version: '1.2.0',
version: '1.2.1',
eventPrefix: 'vuetable:',

@@ -630,3 +630,3 @@ tableData: null,

if (self.tablePagination === null) {
console.warn('vuetable: pagination-path "' + self.paginationPath + '"" not found. ' + 'It looks like the data returned from the sever does not have pagination information.');
console.warn('vuetable: pagination-path "' + self.paginationPath + '" not found. ' + 'It looks like the data returned from the sever does not have pagination information ' + 'or you may have set it incorrectly.');
}

@@ -836,3 +836,3 @@

keys.forEach(function (key) {
if (typeof obj[key] != 'undefined' && obj[key] !== null) {
if (obj !== null && typeof obj[key] != 'undefined' && obj[key] !== null) {
obj = obj[key];

@@ -839,0 +839,0 @@ } else {

{
"name": "vuetable",
"version": "1.2.0",
"version": "1.2.1",
"description": "vue.js table component that will automatically request JSON data from server and display them nicely in HTML table with swap-able/extensible pagination component",
"main": "src/vue-table.js",
"main": "dist/vue-table.js",
"dependencies": {

@@ -7,0 +7,0 @@ "vue": "~1.0.21",

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