chore: update repo references

This commit is contained in:
Evan You
2022-01-18 16:43:59 +08:00
parent 9c304bfe79
commit ae4b0783d7
35 changed files with 1464 additions and 1555 deletions

View File

@@ -137,7 +137,7 @@ export const deprecationData: Record<DeprecationTypes, DeprecationData> = {
message:
`config.devtools has been removed. To enable devtools for ` +
`production, configure the __VUE_PROD_DEVTOOLS__ compile-time flag.`,
link: `https://github.com/vuejs/vue-next/tree/master/packages/vue#bundler-build-feature-flags`
link: `https://github.com/vuejs/core/tree/main/packages/vue#bundler-build-feature-flags`
},
[DeprecationTypes.CONFIG_KEY_CODES]: {

View File

@@ -15,7 +15,7 @@ export type LegacyConfig = {
silent?: boolean
/**
* @deprecated use __VUE_PROD_DEVTOOLS__ compile-time feature flag instead
* https://github.com/vuejs/vue-next/tree/master/packages/vue#bundler-build-feature-flags
* https://github.com/vuejs/core/tree/main/packages/vue#bundler-build-feature-flags
*/
devtools?: boolean
/**

View File

@@ -54,7 +54,7 @@ export const ErrorTypeStrings: Record<number | string, string> = {
[ErrorCodes.ASYNC_COMPONENT_LOADER]: 'async component loader',
[ErrorCodes.SCHEDULER]:
'scheduler flush. This is likely a Vue internals bug. ' +
'Please open an issue at https://new-issue.vuejs.org/?repo=vuejs/vue-next'
'Please open an issue at https://new-issue.vuejs.org/?repo=vuejs/core'
}
export type ErrorTypes = LifecycleHooks | ErrorCodes