剑指offer第8题

Posted adam-ye

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了剑指offer第8题相关的知识,希望对你有一定的参考价值。

<el-table-column
          prop="createdate"
          :formatter="dateFormat"		//这个过滤器只能使用局部过滤器
          label="日期"
          sortable
          width="180">
        </el-table-column>

如果要使用全局过滤器

<el-table-column
label="更新日期"
sortable
    >
    <!--需要在行内部自定义查插槽使用全局过滤器-->
    <template slot-scope="scope">
        <p>{{scope.row.up_date|dateFormat}}</p>		
	</template>
</el-table-column>

以上是关于剑指offer第8题的主要内容,如果未能解决你的问题,请参考以下文章

剑指offer——python第4题重建二叉树

剑指offer面试题 49. 丑数

剑指offer 面试38题

剑指offer第40题

剑指offer 面试31题

剑指Offer面试题53 - I. 在排序数组中查找数字 I