mint-ui 时间选择

HTML

点击弹出{{msg}}

{{msg}}

JS 部分

data() {
    return {
      value: null,
      msg: new Date().toLocaleString().slice(0, length - 3),
    }
  }
methods:{
    open() {
      this.$refs.picker.open();
    },
    handleChange(value) {
      this.msg = value.toLocaleString().slice(0, length - 3);
    }
}

你可能感兴趣的:(mint-ui 时间选择)