37 lines
550 B
Vue
37 lines
550 B
Vue
<template>
|
|
<RouterView />
|
|
</template>
|
|
|
|
<script setup>
|
|
import autofit from "autofit.js";
|
|
|
|
onMounted(() => {
|
|
autofit.init({
|
|
dh: 2160,
|
|
dw: 3840,
|
|
el: "#app",
|
|
resize: true,
|
|
ignore: [
|
|
{
|
|
el: "#cvs",
|
|
height: "100vh",
|
|
width: "100vw",
|
|
},
|
|
{
|
|
el: "#login-box",
|
|
height: "100vh",
|
|
width: "100vw",
|
|
},
|
|
{
|
|
el: "#chat-box",
|
|
height: "100vh",
|
|
width: "100vw",
|
|
},
|
|
],
|
|
});
|
|
});
|
|
</script>
|
|
<style>
|
|
@import "./assets/fonts/font.css";
|
|
</style>
|