article.vue 939 Bytes
<!--
 * @Description: 
 * @Date: 2022-04-20 15:31:47
-->
<!--
 * @Description: file content
 * @Author: jml
 * @Date: 2021-03-24 10:22:27
 * @LastEditors: Please set LastEditors
 * @LastEditTime: 2022-04-20 15:50:05
-->
<template>
  <div>
    <BiBlank height="40" :usePrint="true"></BiBlank>
    <div v-html="content"></div>
    <BiBlank height="40" :usePrint="true"></BiBlank>
  </div>
</template>

<script>
import BiBlank from './blank.vue';
export default {
  name: 'bi-sex-icon',
  components: { BiBlank },
  props: {
    title: {
      type: String,
      default: ''
    },
    content: {
      type: String,
      default: ''
    }
  },
  data() {
    return {
      option: {}
    };
  },
  created() {}
};
</script>
<style lang="scss" scoped>
.bi-sex-icon {
  text-align: center;
  padding-top: 110px;
  height: 350px;
  &_item {
    display: inline-block;
    margin: 0 45px;
    p {
      margin-top: 15px;
    }
  }
}
</style>