soates / Auto-Import

vscode extension that will automatically finds, parses and provides code actions for all available imports. Only currently works with files in your folder and TypeScript.
MIT License
165 stars 62 forks source link

VueJS auto imports to style tag. #108

Open m0ksem opened 4 years ago

m0ksem commented 4 years ago

Got:

<script lang="ts">
// ...
</script>

<style>
import Foo from "./Foo.vue"
// ...
</style>

Need to be:

<script lang="ts">
import Foo from "./Foo.vue"
// ...
</script>

<style>
// ...
</style>