mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-05-05 09:46:44 +08:00
14 lines
271 B
Markdown
14 lines
271 B
Markdown
```html
|
|
<template>
|
|
<Wb-input :value.sync="text3" placeholder="请输入数字" type="number"></Wb-input>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
data: function () {
|
|
return {
|
|
text3: "",
|
|
}
|
|
},
|
|
}
|
|
</script>
|
|
``` |