Shi*_*ani 14 vue.js vue-component vue-directives
我是 Vue 框架的新手。我的要求是在输入框中添加货币格式。
\n\n格式:
\n我需要在焦点移出时添加带有两个零的小数,并在焦点移入时删除零。 v-modal 值不应更改,因为此格式仅用于用户显示。
我发现这个解决方案非常接近我的要求:https ://jsfiddle.net/mani04/w6oo9b6j 。只有两件事我无法实现。
\n\n我想像这样使用它:
\n\n<my-currency-input id="test1" name="test2" v-model="price" v-validate="required|numeric\xe2\x80\x9d ></my-currency-input>\nRun Code Online (Sandbox Code Playgroud)\n\n我怎样才能做到这一点?我应该为此使用 Vue 指令吗?
\n\nhttps://jsfiddle.net/mani04/w6oo9b6j/
\n\n我想要这样的东西
\n\n<my-currency-input id="test1" name="test2" v-model="price" v-validate="required|numeric\xe2\x80\x9d ></my-currency-input>\nRun Code Online (Sandbox Code Playgroud)\n
小智 6
methods: {
formatNumber (num) {
return parseFloat(num).toFixed(2)
},
}
Run Code Online (Sandbox Code Playgroud)
在模板中
{{ formatNumber($variable) }}
Run Code Online (Sandbox Code Playgroud)