<ma-time-picker
format="hh:mm A"
style="flex: 3"
:showNow="false"
:allowClear="false"
v-model:value="listTime.startTime"
>
</ma-time-picker>
组件在上面
import { defineComponent, ref } from 'vue'
export default defineComponent({
setup(props, { emit }) {
const listTime = ref({
startTime: '',
noticeTime: ''
})
这样就可以用对象的属性把两个东西双向绑定了,咱也不知道具体的,就是很神奇