Skip to content

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

License

Notifications You must be signed in to change notification settings

halitsever/vue3-json-to-excel

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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:

<vue3-json-to-excel :jsonData="{ hello: 'world', world: 'hello' }" />

Props:

Name Type
jsonData Object
fileName String
buttonText String

Full example:

<script>

import { defineComponent } from  'vue';

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

  

export  default  defineComponent({

name:  'ServeDev',

components: {

Vue3JsonToExcel

}

});

</script>

  

<template>

<div  id="app">

<vue3-json-to-excel  fileName="myFile"  buttonText="Download Halit's excel file" :jsonData="{ hello:  'world', world:  'hello' }" />

</div>

</template>

About

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

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published