Ответ: задать стили в странице к примеру
<template>
<div><Auth class="auth"></Auth></div>
</template>
<style lang="scss" scoped>
.auth {
transform: scale(1);
}
</style>
<script>
import Auth from "@/components/Auth.vue";
export default {
name: "Authorization",
components: {
Auth,
},
};
</script>