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.
28 lines
459 B
28 lines
459 B
<template>
|
|
<div
|
|
style="fontSize: 14px;lineHeight: 22px;marginBottom: 7px;color: rgba(0,0,0,0.65)"
|
|
>
|
|
<p
|
|
style="marginRight: 8px;display: inline-block;color: rgba(0,0,0,0.85)"
|
|
>
|
|
{{ title }}
|
|
</p>
|
|
<template v-if="content">
|
|
{{ content }}
|
|
</template>
|
|
<slot
|
|
v-else
|
|
name="content"
|
|
/>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
props: {
|
|
title: String,
|
|
content: String,
|
|
},
|
|
};
|
|
</script>
|
|
|