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