From 19c0affa653b3de15d5e0bef03a0eaf9de26be8e Mon Sep 17 00:00:00 2001 From: skirtle <65301168+skirtles-code@users.noreply.github.com> Date: Thu, 1 Apr 2021 00:56:27 +0100 Subject: [PATCH] fix: update broken link to the custom element spec --- src/style-guide/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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