美文网首页
vue通过computed传参

vue通过computed传参

作者: _hider | 来源:发表于2020-06-23 17:15 被阅读0次
    template
    <template>
      <div>{{amount(2)}}</div>
    </template>
    
    js
    <script>
    export default {
      data() {
        return {
          price: 1000
        };
      },
      computed: {
        amount() {
          return (n) => {
            return this.price.toFixed(n)
          }
        }
      }
    };
    </script>
    

    相关文章

      网友评论

          本文标题:vue通过computed传参

          本文链接:https://www.haomeiwen.com/subject/bibhfktx.html