0.0.7 • Published 1 year ago

vue-json-to-html-table v0.0.7

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year ago

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
0.0.7

1 year ago

0.0.6

1 year ago

0.0.5

1 year ago

0.0.4

1 year ago

0.0.3

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago