38 lines
655 B
Java
38 lines
655 B
Java
<template>
|
|
<div class="setting-drawer-index-item">
|
|
<h3 class="setting-drawer-index-title">{{ title }}</h3>
|
|
<slot></slot>
|
|
<a-divider v-if="divider"/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "SettingItem",
|
|
props: {
|
|
title: {
|
|
type: String,
|
|
default: ''
|
|
},
|
|
divider: {
|
|
type: Boolean,
|
|
default: false
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.setting-drawer-index-item {
|
|
margin-bottom: 24px;
|
|
|
|
.setting-drawer-index-title {
|
|
font-size: 14px;
|
|
color: rgba(0, 0, 0, .85);
|
|
line-height: 22px;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
}
|
|
</style> |