mirror of
https://github.com/tenrok/vue-json-viewer.git
synced 2026-06-08 17:22:32 +03:00
19 lines
250 B
Vue
19 lines
250 B
Vue
<template>
|
|
<span class="json-number">{{jsonValue}}</span>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'JsonNumber',
|
|
props: {
|
|
jsonValue: Number
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.json-number {
|
|
color: #fc1e70;
|
|
}
|
|
</style>
|