Vue开发--ElementUI的时间控件选择(年月日时分)
Vue开发--ElementUI的时间控件选择(年月日时分)
·
Vue开发–ElementUI的时间控件选择(年月日时分)
注意:
format=“yyyy-MM-dd hh:mm”
value-format=“yyyy-MM-dd hh:mm”
这里 hh:mm 指的是12小时制,HH:mm 指的是24小时制。
代码实现
<html>
<head>
<title>测试</title>
<link rel="stylesheet" href="https://unpkg.com/element-ui/lib/theme-chalk/index.css">
</head>
<body>
<div id="app">
<el-date-picker
v-model="value1"
type="datetime"
format="yyyy-MM-dd hh:mm"
value-format="yyyy-MM-dd hh:mm"
placeholder="选择日期时间">
</el-date-picker>
<el-button type="primary" @click="clickBtn">打印选择的时间</el-button>
</div>
<!-- 引入组件库 -->
<script type="text/javascript" src="${ctx}/static/common/js/vue.js"></script>
<script src="https://unpkg.com/element-ui/lib/index.js"></script>
<script type="text/javascript">
new Vue({
el: "#app",
data: {
value1: ""
},
methods: {
clickBtn: function () {
console.log(this.value1);
}
}
});
</script>
</body>
</html>
更多推荐
已为社区贡献6条内容
所有评论(0)