datetime日期时间

... 2022-9-15 Less than 1 minute

# datetime日期时间

值:2020-01-01
值:2020-01-01 12:00:00
<el-row :span="24">
  <el-col :span="6">
    值:{{form}}<br/>
   <avue-date v-model="form" format="yyyy年MM月dd日" value-format="yyyy-MM-dd" placeholder="请选择日期"></avue-date> <el-col :span="24"></el-col>
  </el-col>
  <el-col :span="24"></el-col>
  <el-col :span="6">
     值:{{form1}}<br/>
    <avue-date v-model="form1" type="datetime" format="yyyy年MM月dd日 hh:mm:ss" value-format="yyyy-MM-dd hh:mm:ss" placeholder="请选择日期"></avue-date>
  </el-col>
</el-row>
<script>
export default {
    data() {
      return {
        form:'2020-01-01',
        form1:'2020-01-01 12:00:00'
      }
    }
}
</script>

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Expand Copy
Last update: September 15, 2022 11:06
Contributors: smallwei
您正在浏览基于 Vue 2.x 的 Avue 文档; 点击这里 查看 Vue 3.x 的升级版本