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 2bb1504 commit 6a3430dCopy full SHA for 6a3430d
src/core/util/options.js
@@ -212,7 +212,8 @@ function normalizeComponents (options: Object) {
212
const components = options.components
213
let def
214
for (const key in components) {
215
- if (isBuiltInTag(key) || config.isReservedTag(key)) {
+ const lower = key.toLowerCase()
216
+ if (isBuiltInTag(lower) || config.isReservedTag(lower)) {
217
process.env.NODE_ENV !== 'production' && warn(
218
'Do not use built-in or reserved HTML elements as component ' +
219
'id: ' + key
0 commit comments