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/components/Dividers/PartTitle.vue

26 lines
658 B

6 years ago
<template>
<div class="SectionTitle WM-Width-100">
<h4 class="TitleFa WM-Align-R" v-text="TitleFa"></h4>
<div class="TitleEn WM-Flex">
<span :class="[Color,TextColor]" v-text="TitleEn"></span>
6 years ago
<div class="Line">
<div class="inner" :class="Color"></div>
</div>
</div>
</div>
</template>
<script>
export default {
props: {
TitleFa: { default: "عنوان بخش" },
TitleEn: { default: "Part Title" },
Color: { default: "black" },
TextColor: { default: "white--text" }
6 years ago
},
data: function () {
return {}
6 years ago
},
};
</script>