2
0
mirror of https://github.com/tenrok/vue-json-viewer.git synced 2026-06-05 16:42:30 +03:00
Files
vue-json-viewer/types/json-function.vue
T
2018-09-17 05:53:02 +02:00

19 lines
261 B
Vue

<template>
<span class="json-function">&lt;function&gt;</span>
</template>
<script>
export default {
name: 'JsonFunction',
props: {
jsonValue: Function
}
};
</script>
<style lang="scss">
.json-function {
color: #067bca;
}
</style>