Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/api/general.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ A type helper for defining a Vue component with type inference.
type FooInstance = InstanceType<typeof Foo>
```

### Note on webpack Treeshaking
### Note on webpack Treeshaking {#note-on-webpack-treeshaking}

Because `defineComponent()` is a function call, it could look like that it would produce side-effects to some build tools, e.g. webpack. This will prevent the component from being tree-shaken even when the component is never used.

Expand Down
2 changes: 1 addition & 1 deletion src/ecosystem/newsletters.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Community Newsletters
# Community Newsletters {#community-newsletters}

There are many great newsletters / Vue-dedicated blogs from the community bringing you latest news and happenings in the Vue ecosystem. Here is a non-exhaustive list of active ones that we have come across:

Expand Down
2 changes: 1 addition & 1 deletion src/guide/components/v-model.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Component v-model
# Component v-model {#component-v-model}

`v-model` can be used on a component to implement a two-way binding.

Expand Down
2 changes: 1 addition & 1 deletion src/guide/reusability/plugins.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Plugins
# Plugins {#plugins}

## Introduction {#introduction}

Expand Down
2 changes: 1 addition & 1 deletion src/guide/typescript/composition-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ export default defineComponent({
})
```

### Complex prop types
### Complex prop types {#complex-prop-types}

With type-based declaration, a prop can use a complex type much like any other type:

Expand Down