Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feature Request]: Highlight unused components in Option API #2448

Open
1 task done
axetroy opened this issue Nov 9, 2020 · 0 comments
Open
1 task done

[Feature Request]: Highlight unused components in Option API #2448

axetroy opened this issue Nov 9, 2020 · 0 comments

Comments

@axetroy
Copy link

axetroy commented Nov 9, 2020

  • I have searched through existing issues

Feature Request

Background:

It is easy for us to import some unused components. As time increases, these components may increase.

I hope the extension can remind me during the development phase

<template>
  	<div>
		<custom-dialog />
	</div>
</template>

<script>
import Dialog from "@/components/dialog";
import UnusedComponent from "@/components/UnusedComponent";

export default {
  components: {
    "custom-dialog": Dialog, // nothing happened here
    UnusedComponent // Highlight here because this component is not used
  }
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants