]> git.ipfire.org Git - thirdparty/vuejs/core.git/commitdiff
chore: remove dead links (#11173) [ci skip]
authorXiaoDong <admin@xiaodong.moe>
Sat, 22 Jun 2024 08:55:37 +0000 (16:55 +0800)
committerGitHub <noreply@github.com>
Sat, 22 Jun 2024 08:55:37 +0000 (16:55 +0800)
packages/runtime-core/__tests__/apiInject.spec.ts
packages/runtime-core/__tests__/apiLifecycle.spec.ts
packages/runtime-core/__tests__/apiSetupContext.spec.ts
packages/runtime-core/__tests__/apiWatch.spec.ts
packages/runtime-core/__tests__/rendererTemplateRef.spec.ts

index 485e688b1ae859cd64f50eb73464edcd31a3affd..e5c9267e5bb1807a4028949084fad19f7d1662f4 100644 (file)
@@ -13,7 +13,6 @@ import {
 } from '../src/index'
 import { createApp, nodeOps, render, serialize } from '@vue/runtime-test'
 
-// reference: https://vue-composition-api-rfc.netlify.com/api.html#provide-inject
 describe('api: provide/inject', () => {
   it('string keys', () => {
     const Provider = {
index 5a0da4d6789347aa83909c792851f8803df2e924..45ea3ac39b852f7327b89dd89444d0ef5dda27de 100644 (file)
@@ -24,8 +24,6 @@ import {
   TriggerOpTypes,
 } from '@vue/reactivity'
 
-// reference: https://vue-composition-api-rfc.netlify.com/api.html#lifecycle-hooks
-
 describe('api: lifecycle hooks', () => {
   it('onBeforeMount', () => {
     const root = nodeOps.createElement('div')
index c4a32a067c016016bfa58d82b17d5ead7923efd9..d3aab9ab2c50094fe993636a022a6e4eccd14a66 100644 (file)
@@ -12,8 +12,6 @@ import {
   watchEffect,
 } from '@vue/runtime-test'
 
-// reference: https://vue-composition-api-rfc.netlify.com/api.html#setup
-
 describe('api: setup context', () => {
   it('should expose return values to template render context', () => {
     const Comp = defineComponent({
index 265bc0a0d46f045bada0d0fc29b8ac2bce2c4a9b..febfd462d06140b7be512235895e2f378e36e768 100644 (file)
@@ -35,8 +35,6 @@ import {
   triggerRef,
 } from '@vue/reactivity'
 
-// reference: https://vue-composition-api-rfc.netlify.com/api.html#watch
-
 describe('api: watch', () => {
   it('effect', async () => {
     const state = reactive({ count: 0 })
index 9f26bf9bdf8cf8137719c89b60d4c7471a84a8e8..799108dca8ae3829c7b8457d9b18e02b626c415f 100644 (file)
@@ -10,8 +10,6 @@ import {
   shallowRef,
 } from '@vue/runtime-test'
 
-// reference: https://vue-composition-api-rfc.netlify.com/api.html#template-refs
-
 describe('api: template refs', () => {
   it('string ref mount', () => {
     const root = nodeOps.createElement('div')