# auto-screen-view
> 大屏适配
```html
<script setup lang="ts">
import { ref } from "vue";
import { AutoScreen } from "./index";
const fullScreen = ref(false)
</script>
<template>
<AutoScreen :origin-height="1080" :origin-width="1920" :full-screen="fullScreen" />
</template>
```