From 711a0e3e125046163d82b15b2d02adb2c42ad346 Mon Sep 17 00:00:00 2001 From: Nickfrm <35500726+Nickfrm@users.noreply.github.com> Date: Mon, 6 Jun 2022 16:46:11 +0300 Subject: [PATCH] Update URL in Extend and mixins md file --- docs/guide/extend-and-mixins.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/extend-and-mixins.md b/docs/guide/extend-and-mixins.md index 32c7570..d05e80b 100644 --- a/docs/guide/extend-and-mixins.md +++ b/docs/guide/extend-and-mixins.md @@ -35,7 +35,7 @@ Note that every super class must be a class component. In other words, it needs ## Mixins -Vue Class Component provides `mixins` helper function to use [mixins](https://vuejs.org/v2/guide/mixins.html) in class style manner. By using `mixins` helper, TypeScript can infer mixin types and inherit them on the component type. +Vue Class Component provides `mixins` helper function to use [mixins](https://v2.vuejs.org/v2/guide/mixins.html) in class style manner. By using `mixins` helper, TypeScript can infer mixin types and inherit them on the component type. Example of declaring mixins `Hello` and `World`: