123456789101112131415161718192021 |
- <template>
- <div class="page-size-limit">
- <slot />
- </div>
- </template>
- <script>
- export default {};
- </script>
- <style lang="scss">
- $min-width: 1280px;
- $min-height: 720px;
- .page-size-limit {
- width: 100%;
- height: 100%;
- min-width: $min-width;
- min-height: $min-height;
- }
- </style>
|