vue页面在table字段后加单位

<el-table-column label="售价" align="center" width="120">
  <template slot-scope="scope">
    {{ `${scope.row.price.toFixed(2)}` }}
  </template>
</el-table-column>
<el-table-column label="金重" align="center" prop="weight" width="70">
        <template slot-scope="scope">
          {{ scope.row.weight + 'g' }}
        </template>
      </el-table-column>

文章来源地址https://uudwc.com/A/ABr5a

原文地址:https://blog.csdn.net/qq_43193513/article/details/132489863

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请联系站长进行投诉反馈,一经查实,立即删除!

h
上一篇 2023年08月27日 01:27
下一篇 2023年08月27日 01:28