Skip to content

Commit

Permalink
docs: fix tsconfig (#537)
Browse files Browse the repository at this point in the history
  • Loading branch information
Gehbt committed Oct 25, 2023
1 parent 103a28a commit b1dee80
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/zh-CN/features/export-expose.md
Original file line number Diff line number Diff line change
Expand Up @@ -180,8 +180,8 @@ export default a
```jsonc {6}
// tsconfig.json
{
"target": 3,
"vueCompilerOptions": {
"target": 3,
"plugins": [
"@vue-macros/volar/export-expose"
// ...更多功能
Expand Down
2 changes: 1 addition & 1 deletion docs/zh-CN/features/export-props.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ export const bar: number = 1 // 带有默认值
```jsonc {6}
// tsconfig.json
{
"target": 3,
"vueCompilerOptions": {
"target": 3,
"plugins": [
"@vue-macros/volar/export-props"
// ...更多功能
Expand Down
2 changes: 1 addition & 1 deletion docs/zh-CN/features/export-render.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ export default () => <div>ok</div>
```jsonc {6}
// tsconfig.json
{
"target": 3,
"vueCompilerOptions": {
"target": 3,
"plugins": [
"@vue-macros/volar/export-render"
// ...更多功能
Expand Down

0 comments on commit b1dee80

Please sign in to comment.