Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
276 views
in Technique[技术] by (71.8m points)

vue 引入的方法如何直接渲染在页面上?

<template>
    <div style="margin: 10px;">
        {{numberToChinese(501)}}
    </div>
</template>
import {numberToChinese} from '@/utils/common.js'

有个封装好的数字转大写的方法,我这样用报错了。怎么回事呢 怎样才能渲染在页面上


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
computed:{
    numberToChinese(){
        return numberToChinese
    }
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...