Blame view

src/views/demo/comp/modal/Modal3.vue 461 Bytes
陈文彬 authored
1
2
<template>
  <BasicModal v-bind="$attrs" title="Modal Title" :helpMessage="['提示1', '提示2']" width="700px">
vben authored
3
    <p class="h-20" v-for="index in 20" :key="index">根据屏幕高度自适应</p>
陈文彬 authored
4
5
6
7
8
  </BasicModal>
</template>
<script lang="ts">
  import { defineComponent } from 'vue';
  import { BasicModal } from '/@/components/Modal';
9
陈文彬 authored
10
11
12
13
14
15
16
  export default defineComponent({
    components: { BasicModal },
    setup() {
      return {};
    },
  });
</script>