2
0
mirror of https://github.com/tenrok/vue-json-viewer.git synced 2026-06-08 17:22:32 +03:00
Files
vue-json-viewer/types/json-number.vue
T
陈峰 c09807c798 init
2017-10-18 11:45:31 +08:00

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>