Replies: 1 comment
-
Vue components often do not have content but have long names so self-closing is preferred for them |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Every time i add a div
<div></div>
, if i don't put anything inside that div the auto linter will replace that with<div />
, which makes no sense and creates issues, as we all know the<div />
is not a thing and causes issues as the browser considers this just exactly as only having<div>
.Why this behavior is included ? and is there any way to fix it ?
Beta Was this translation helpful? Give feedback.
All reactions