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
- Host: GitHub
- URL: https://github.com/halitsever/vue3-json-to-excel
- Owner: halitsever
- License: mit
- Created: 2022-04-23T23:57:26.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-04-23T23:57:29.000Z (about 4 years ago)
- Last Synced: 2025-04-11T05:41:31.354Z (about 1 year ago)
- Topics: excel, json, vue, vuejs
- Language: JavaScript
- Homepage:
- Size: 256 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.MD
- License: LICENSE
Awesome Lists containing this project
README

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
}
});