Make explicit auto import of a component
<script setup lang="ts">
import { NuxtLink, LazyMountainsList } from '#components'
const show = ref(false)
</script>
is this possible?
import { main as Logo } from '#components/navbar/logo/main.vue'<script setup lang="ts">
import { NuxtLink, LazyMountainsList } from '#components'
const show = ref(false)
</script>
is this possible?
import { main as Logo } from '#components/navbar/logo/main.vue'