<!-- 
  自用图表标题居中加粗用组件
 -->


<!--
  视图层
 -->
<template>
  <!-- 居中 -->
  <span class="center">
    <!-- 加粗 -->
    <strong>
      <!-- 插槽 -->
      <slot></slot>
    </strong>
  </span>
</template>