webapp: Remove orphan file
This commit is contained in:
parent
dfec263d65
commit
065aab7141
@ -1,28 +0,0 @@
|
|||||||
<template>
|
|
||||||
<table class="table table-hover">
|
|
||||||
<tbody>
|
|
||||||
<tr>
|
|
||||||
<td>Current Limit</td>
|
|
||||||
<td>{{ formatNumber(limitData.limit, 2) }}%</td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts">
|
|
||||||
import { formatNumber } from '@/utils';
|
|
||||||
import { defineComponent } from 'vue';
|
|
||||||
|
|
||||||
declare interface LimitData {
|
|
||||||
limit: number;
|
|
||||||
}
|
|
||||||
|
|
||||||
export default defineComponent({
|
|
||||||
props: {
|
|
||||||
limitData: { type: Object as () => LimitData, required: true },
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
formatNumber,
|
|
||||||
}
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
Loading…
Reference in New Issue
Block a user