tiny-vue_version0/examples/sites/demos/pc/app/statistic/prefix-suffix-slot-composit...

28 lines
952 B
Vue

<template>
<div>
<tiny-layout>
<tiny-row :flex="true">
<tiny-col :span="4">
<tiny-statistic :value="306">
<template #prefix><div style="margin-right: 15px">已使用容量(GB)</div></template>
<template #suffix><div style="font-size: 24px">GB</div></template>
</tiny-statistic>
</tiny-col>
<tiny-col :span="4">
<tiny-statistic :value="1280" :precision="2">
<template #prefix><div style="font-size: 24px; font-weight: 600"></div></template>
<template #suffix><div>/</div></template>
</tiny-statistic>
</tiny-col>
<tiny-col :span="4">
<tiny-statistic suffix="GB"></tiny-statistic>
</tiny-col>
</tiny-row>
</tiny-layout>
</div>
</template>
<script setup>
import { Statistic as TinyStatistic, Layout as TinyLayout, Row as TinyRow, Col as TinyCol } from '@opentiny/vue'
</script>