import { defineComponent, reactive } from "vue"; import styles from "./index.module.less"; import iconRight from "./icons/icon-right.png"; import { Popup } from "vant"; import ScreenModel from "./screen-model"; import Recommendation from "./recommendation"; export default defineComponent({ name: "helper-model", setup() { const helperData = reactive({ show: false, recommendationShow: false, // 建议 }); return () => ( <>