1234567891011121314151617181920212223242526 |
- import { defineComponent, ref } from "vue";
- import styles from "./index.module.less";
- import iconBack from "../icons/icon-right-back.png";
- import { Icon, ImagePreview, Tab, Tabs } from "vant";
- export default defineComponent({
- name: "screenModel",
- emits: ["close"],
- setup(props, { emit }) {
- return () => (
- <>
- <img class={styles.closeBtn} src={iconBack} onClick={() => emit("close")} />
- <div class={styles.container}>
- <Tabs swipeable animated>
- <Tab name="投屏" title="投屏">
- <iframe src={`${location.origin}/classroom-app/#/guide`} />
- </Tab>
- <Tab name="帮助" title="帮助">
- <iframe src={`${location.origin}/classroom-app/#/help-center?platformType=ANALYSIS`} />
- </Tab>
- </Tabs>
- </div>
- </>
- );
- },
- });
|