We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90ed482 commit 3f0c628Copy full SHA for 3f0c628
src/core/util/options.js
@@ -260,8 +260,7 @@ export function validateComponentName (name: string) {
260
'and must start with a letter.'
261
)
262
}
263
- const lower = name.toLowerCase()
264
- if (isBuiltInTag(lower) || config.isReservedTag(lower)) {
+ if (isBuiltInTag(name) || config.isReservedTag(name)) {
265
warn(
266
'Do not use built-in or reserved HTML elements as component ' +
267
'id: ' + name
0 commit comments