mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-13 13:09:29 +08:00
40 lines
718 B
Vue
40 lines
718 B
Vue
<template>
|
|
<material-card
|
|
class="v-card--material-stats"
|
|
v-bind="$attrs"
|
|
v-on="$listeners"
|
|
>
|
|
<template #subtitle>
|
|
<div
|
|
class="text-right text-h3 v-card__subtitle--material-stats"
|
|
v-text="value"
|
|
/>
|
|
</template>
|
|
|
|
<template #actions>
|
|
<slot name="actions" />
|
|
</template>
|
|
|
|
<slot />
|
|
</material-card>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'MaterialStatCard',
|
|
|
|
props: { value: String },
|
|
}
|
|
</script>
|
|
|
|
<style lang="sass">
|
|
.v-card--material-stats.v-card--material .v-card--material__title
|
|
color: #999999
|
|
font-size: .875rem !important
|
|
margin-left: auto
|
|
text-align: right
|
|
|
|
.v-card__subtitle--material-stats
|
|
color: #3C4858
|
|
</style>
|