diff --git a/src/style-guide/README.md b/src/style-guide/README.md index 9fb53eb0c1..8942647328 100644 --- a/src/style-guide/README.md +++ b/src/style-guide/README.md @@ -38,7 +38,7 @@ Some features of Vue exist to accommodate rare edge cases or smoother migrations **Component names should always be multi-word, except for root `App` components, and built-in components provided by Vue, such as `` or ``.** -This [prevents conflicts](http://w3c.github.io/webcomponents/spec/custom/#valid-custom-element-name) with existing and future HTML elements, since all HTML elements are a single word. +This [prevents conflicts](https://html.spec.whatwg.org/multipage/custom-elements.html#valid-custom-element-name) with existing and future HTML elements, since all HTML elements are a single word.

Bad