Vue——element ui 的table无法使用全局过滤器


<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>


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM