mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-05-10 12:39:01 +08:00
14 lines
243 B
Markdown
14 lines
243 B
Markdown
```html
|
|
<template>
|
|
<Wb-input :value.sync="text4" icon="calendar"></Wb-input>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
data: function () {
|
|
return {
|
|
text4: "",
|
|
}
|
|
},
|
|
}
|
|
</script>
|
|
``` |