An open API service indexing awesome lists of open source software.

https://github.com/halitsever/vue3-json-to-excel

🔄 Component that lets you convert your Json objects into excel tables
https://github.com/halitsever/vue3-json-to-excel

excel json vue vuejs

Last synced: 12 months ago
JSON representation

🔄 Component that lets you convert your Json objects into excel tables

Awesome Lists containing this project

README

          


Vue json to excel, vue 3

Component that lets you convert your Json objects into excel tables

Getting started:


Get the package:

npm i vue vue3-json-to-excel

Usage:

Props:

| Name | Type |
|--|--|
| jsonData| Object|
| fileName| String |
| buttonText | String |

Full example:



import { defineComponent } from 'vue';

import Vue3JsonToExcel from '@/vue3-json-to-excel.vue';



export default defineComponent({

name: 'ServeDev',

components: {

Vue3JsonToExcel

}

});