Renamed Vue Files

This commit is contained in:
scmmishra
2018-11-13 17:24:07 +05:30
committed by Aditya Hase
parent 0225642459
commit 2596ea0816
14 changed files with 54 additions and 54 deletions

View File

@@ -1,33 +0,0 @@
<template>
<section class='article-top-section video-section-bg'>
<div class='container'>
<div class="row">
<div class="col-md-8">
<h2>{{ title }}</h2>
<span v-if="typeof author !== 'undefined' || author !== null" class="text-muted">
Published on {{ publishDate }}, by {{ author }}
</span>
</div>
<div class="col-md-4 text-right">
<slot></slot>
</div>
</div>
<hr>
</div>
</section>
</template>
<script>
export default {
props: ['title', 'publishDate', 'author'],
name: 'ContentTitle',
data() {
return {
};
},
};
</script>
<style lang="css" scoped>
</style>