# Changelog
### 0.37.3 | 2023-02-23 | [VSIX](https://marketplace.visualstudio.com/_apis/public/gallery/publishers/octref/vsextensions/vetur/0.37.3/vspackage)
- Ignore vue/multi-word-component-names in template validation. #3649
- Fix vetur hang any request when project have .gitignore. #3657
### 0.37.0 | 2023-02-20 | [VSIX](https://marketplace.visualstudio.com/_apis/public/gallery/publishers/octref/vsextensions/vetur/0.37.0/vspackage)
- Upgrade to typescript 4.9 and support it.
- Upgrade prettier and prettier-eslint.
- Upgrade ESLint and eslint-plugin-vue.
- Upgrade many deps.
- Recommend new official extension in vue 3 project.
- Basic support `
```
In the HTML interpolation regions, `start` and `msg` will be completed. Their documentation will be the Markdown below:
````
Initial counter value
```js
start: {
type: Number,
default: 0
}
```
---
My msg
```js
msg: 'Vetur get much better completion',
```
````
#### Child Component Completion
If you have child components in a parent component:
```vue