You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

vue-json-to-html-table

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vue-json-to-html-table

A Vue.js 3 component to transform json data in to html.

0.0.6
Source
npmnpm
Version published
Weekly downloads
71
173.08%
Maintainers
1
Weekly downloads
 
Created
Source

vue-json-to-html-table

A Vue.js 3 component to transform json data in to html.

Installation

npm install vue-json-to-html-table

Usage

For vue-cli user:

import VueJsonToHtmlTable from 'vue-json-to-html-table';
import 'vue-json-to-html-table/dist/style.css';

In your App.vue:

<template>
  <div id="app">
    <VueJsonToHtmlTable :data="jsonData" />
  </div>
</template>

import VueJsonToHtmlTable from 'vue-json-to-html-table';

export default {
  components: {
    ...,
    VueJsonToHtmlTable
  }
}

Important: data must be in valid json format.

Configuration

PropDetails
dataData in valid json format

FAQs

Package last updated on 12 Nov 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts