UNPKG

auto-screen-view

Version:

大屏适配

15 lines (12 loc) 287 B
# 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> ```