vue中全局filter和局部filter怎么用?


需求:
将价值上加上元单位符号(全局filter)

<template>
   <div>
    衣服价格:{{productPrice|formatTime}}

    </div>
</template>
<script>
  import Vue from 'vue'
  Vue.filter('formatTime', function (value) {
    return '¥'+value
  })
  export default {
    name: 'side-bar-placeholder',
    data () {
      return {
         productPrice:100
      }
    }
  }
</script>
<style lang="less" scoped>
</style>

将价值上加上美元单位符号(全局filter)

<template>
   <div>
    衣服价格:{{productPrice|formatTime}}
    </div>
</template>
<script>

  import Vue from 'vue'
  export default {
    name: 'side-bar-placeholder',
    data () {
      return {
         productPrice:100
      }
    },

    filters:{
       formatTime:function (value){
          return '$'+value
       }
    }
  }
</script>
<style lang="less" scoped>
</style>



免责声明!

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



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