Skip to content

Commit 87e2563

Browse files
committed
chore: changelog
close #552 close #553 close #555
1 parent 333c6b0 commit 87e2563

File tree

2 files changed

+13
-5
lines changed

2 files changed

+13
-5
lines changed

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,20 @@
11
# Changelog
22

3+
## 0.27.29
4+
5+
- fix: don't pass unsupport component type to JSX ([#553](https://github.com/johnsoncodehk/volar/issues/553))
6+
- fix: dynamic props borken ([#555](https://github.com/johnsoncodehk/volar/issues/555))
7+
- fix: don't show virtual files in find references result
8+
- fix: directives type-check broken
9+
10+
**Breaking changes since 0.27.27**
11+
12+
- If your project includes Storybook or `@types/react`, you need to config tsconfig `types` option to avoid `@types/react` affect to template type-checking. See [#552](https://github.com/johnsoncodehk/volar/issues/552).
13+
314
## 0.27.28
415

516
- feat: support generic `$slots` types
6-
- feat: improve `v-for` typing [#546](https://github.com/johnsoncodehk/volar/pull/546)
17+
- feat: improve `v-for` typing ([#546](https://github.com/johnsoncodehk/volar/pull/546))
718
- feat: support vue project isn't root folder ([#541](https://github.com/johnsoncodehk/volar/issues/541))
819
- fix: slots type of any type component incorrect ([#547](https://github.com/johnsoncodehk/volar/issues/547))
920
- fix: optional `$slots` type incorrect

README.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -113,10 +113,7 @@ For Global components, you need to define `GlobalComponents` interface, for exam
113113

114114
```typescript
115115
// components.d.ts
116-
117-
// declare module '@vue/runtime-core' works for vue 3
118-
// declare module 'vue' works for vue2 + vue 3
119-
declare module 'vue' {
116+
declare module '@vue/runtime-core' {
120117
export interface GlobalComponents {
121118
RouterLink: typeof import('vue-router')['RouterLink']
122119
RouterView: typeof import('vue-router')['RouterView']

0 commit comments

Comments
 (0)