You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
willaengine/resources/js/Global/components/Texts/InfoBlock.vue

18 lines
496 B

5 years ago
<template>
<v-flex :class="Size" class="WM-Info">
<div class="WM-Font-14 WM-Color-Gray"><v-icon>WMi-{{ Icon }}</v-icon> {{ Title }} </div>
5 years ago
<div class="WM-Font-20 WM-Margin-R-10"> {{ Value }} </div>
</v-flex>
</template>
<script>
export default {
props: {
Icon: { default: 'check' },
Title: { default: " عنوان " },
Value: { default: " پسر خوب " },
Size: { default: "xs12 sm4 md3" }
},
};
</script>