Skip to content

Conversation

@afontcu
Copy link
Member

@afontcu afontcu commented Jun 26, 2019

fix #10191

What kind of change does this PR introduce? (check at least one)

  • Bugfix
  • Feature
  • Code style update
  • Refactor
  • Build-related changes
  • Other, please describe:

Does this PR introduce a breaking change? (check one)

  • Yes
  • No

If yes, please describe the impact and migration path for existing applications:

The PR fulfills these requirements:

Other information:

<template>
  <div v-if="something">foo</div>  <!-- does not throw a warning -->
  <div :v-if="something">foo</div> <!-- throws a warning -->
</template>

There are several things I decided that could be improved, so any advice or suggestion is greatly appreciated :)

  • PR shows a warning for every bound attribute starting with v-. The reasoning is that "The v- prefix serves as a visual cue for identifying Vue-specific attributes in your templates." (source)
  • Do we need more test cases?
  • Is the warning message clear enough? If the attribute is not a valid Vue directive, should the message change?

Thanks!

Copy link
Member

@posva posva left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good but now that I think about it, I think we could add the ="${value}" to the instead of part. Sorry I forgot 😆

@afontcu
Copy link
Member Author

afontcu commented Jun 26, 2019

np! Actually I was about to add that bit too 😂 but after not seeing it in the suggestion I restrained myself. Updated!

@Vannsl
Copy link

Vannsl commented Oct 3, 2019

Can't this PR be merged? :)

@posva posva changed the title Warn on colon shorthand usage on directive (fix #10191) feat(warn): Warn on colon shorthand usage on directive (fix #10191) Sep 4, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Warn if colon shorthand is used on v-if/v-html/etc.

5 participants