unplugin-vue-components
unplugin-vue-components copied to clipboard
Auto import lit components
Clear and concise description of the problem
Currently I need to import lit component explicitly so that it can be used in vue
<script setup lang="ts">
import "package/es/button";
</script>
<template>
<custom-button>click</custom-button>
</template>
Suggested solution
support to auto import lit components
Alternative
No response
Additional context
No response
Validations
- [X] Follow our Code of Conduct
- [X] Read the Contributing Guide.
- [X] Check that there isn't already an issue that request the same feature to avoid creating a duplicate.
This seems to overwrite the vue compilerOptions: isCustomElement setting. Have you found a workaround for this yet?