mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-29 13:48:55 +08:00
14 lines
273 B
Markdown
14 lines
273 B
Markdown
```html
|
|
<template>
|
|
<Wb-input :value.sync="text2" placeholder="请输入密码" type="password"></Wb-input>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
data: function () {
|
|
return {
|
|
text2: "",
|
|
}
|
|
},
|
|
}
|
|
</script>
|
|
``` |