<template> <div class="customer-management-information-content"> <table class="customer-management-information-form"> <tr> <td>序号</td> <td style="width: 55%">标题</td> <td>立案时间</td> </tr> <tr> <td>1</td> <td>X公司与攀枝花悦田汽车销售服务有限公司侵害计算机软件著作权纠纷一审民事裁定书</td> <td>2016-12-26</td> </tr> </table> </div> </template> <script lang="ts"> import { Component, Vue } from "vue-property-decorator"; /** * @Description 舆情信息 * @Author JiangTao * @Date 2021-11-10 下午 04:16 */ @Component({ name: "PublicOpinionInformationContent", }) export default class PublicOpinionInformationContent extends Vue {} </script> <style scoped></style>