diff --git a/.vitepress/config.ts b/.vitepress/config.ts index 7be2308b6f..849f092646 100644 --- a/.vitepress/config.ts +++ b/.vitepress/config.ts @@ -286,6 +286,10 @@ export const sidebar: ThemeConfig['sidebar'] = { { text: 'TS with Options API', link: '/guide/typescript/options-api' + }, + { + text: 'Typescript: Advanced', + link: '/guide/typescript/advanced' } ] }, @@ -700,7 +704,7 @@ export default defineConfigWithTheme({ markdown: { config(md) { md.use(headerPlugin) - // .use(textAdPlugin) + // .use(textAdPlugin) } }, diff --git a/src/api/general.md b/src/api/general.md index 80eec455f9..51ed7c25ed 100644 --- a/src/api/general.md +++ b/src/api/general.md @@ -124,9 +124,11 @@ A type helper for defining a Vue component with type inference. You can extract the instance type of a component (equivalent to the type of `this` in its options) from the return type of `defineComponent()` like this: ```ts + import { ComponentInstance } from 'vue' + const Foo = defineComponent(/* ... */) - type FooInstance = InstanceType + type FooInstance = ComponentInstance ``` ### Function Signature {#function-signature} diff --git a/src/api/utility-types.md b/src/api/utility-types.md index d91655a631..94896f96a1 100644 --- a/src/api/utility-types.md +++ b/src/api/utility-types.md @@ -104,6 +104,24 @@ Extract prop types from a runtime props options object. The extracted types are // } ``` +## ComponentInstance {#componentinstance} + +Used to extract the instance type of a component (equivalent to the type of `this` in its options). + +- **Example** + +```vue + + +``` + ## ComponentCustomProperties {#componentcustomproperties} Used to augment the component instance type to support custom global properties. @@ -207,3 +225,299 @@ SFC `