37 lines
388 B
Vue
37 lines
388 B
Vue
<template>
|
|
<div class="content-title">
|
|
<div>
|
|
{{ title }}
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "contentTitle",
|
|
props: {
|
|
title: String,
|
|
},
|
|
data() {
|
|
|
|
},
|
|
computed: {
|
|
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.content-title {
|
|
height:48px;
|
|
line-height:48px;
|
|
font-size: 18px;
|
|
// color: #fff;
|
|
|
|
}
|
|
|
|
</style> |