You just need to pass the data to the component. So something like this (assuming you have a component and include this in that component
<template>
<div>
<download
class="btn btn-primary"
:data="json_data"
></download>
</div>
</template>
<script>
export default {
data () {
return {
json_data: '{ "key": "value" }'
}
}
}
</script>