import { defineComponent, reactive } from 'vue'; import styles from '../operation.module.less'; import { Button, Field } from 'vant'; export default defineComponent({ name: 'input-timer', emits: ['close', 'confirm'], setup(props, { emit }) { const forms = reactive({ minute: null, secord: null }); // 格式化 const onFomatter = () => { // }; return () => (

请输入节目时长

{/* */}分 {/* */}秒
); } });