1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
| <template>
| <el-date-picker
| v-model="dataValue"
| :disabled="disabled"
| style="width: 100%;"
| type="date"
| value-format="yyyy-MM-dd"
| placeholder="选择日期"
| @change="valueChange"/>
| </template>
| <script type="text/javascript">
| import stringMixin from './stringMixin'
|
| export default {
| name: 'XhInput', // 新建 date
| components: {},
| mixins: [stringMixin],
| props: {},
| data () {
| return {}
| },
| computed: {},
| watch: {},
| mounted () {},
| methods: {}
| }
| </script>
| <style lang="less" scoped>
| </style>
|
|