Minor improvements for CardList.vue

This commit is contained in:
scmmishra
2018-11-30 12:46:53 +05:30
committed by Aditya Hase
parent 2955851867
commit edc54cd5f6
5 changed files with 13 additions and 8 deletions

View File

@@ -1,5 +1,5 @@
<template>
<section class='section-padding section-bg'>
<section :class='sectionType'>
<div class='container'>
<h3 class='text-center' v-html="title"></h3>
<p class='lead text-center' v-html="description"></p>
@@ -12,7 +12,7 @@
</template>
<script>
export default {
props:['title', 'description'],
props:['title', 'description', 'sectionType'],
name: "CardList",
};
</script>