mirror of
https://github.com/iczer/vue-antd-admin
synced 2025-04-06 04:00:06 +08:00
26 lines
400 B
Vue
26 lines
400 B
Vue
<template>
|
|
<div class="setting-item">
|
|
<h3 class="title">{{title}}</h3>
|
|
<slot></slot>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'SettingItem',
|
|
props: ['title']
|
|
}
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
.setting-item{
|
|
margin-bottom: 24px;
|
|
.title{
|
|
font-size: 14px;
|
|
color: @title-color;
|
|
line-height: 22px;
|
|
margin-bottom: 12px;
|
|
}
|
|
}
|
|
</style>
|