Skip to content
This repository has been archived by the owner on Aug 6, 2024. It is now read-only.

Commit

Permalink
docs: update README
Browse files Browse the repository at this point in the history
  • Loading branch information
ModyQyW committed May 15, 2024
1 parent 88a9037 commit b5c7b4c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@

<br />

- 配置 `tsconfig.json`,确保 `compilerOptions.types` 中含有 `@dcloudio/types``@uni-helper/uni-app-types` `include` 包含了对应的 `vue` 文件
- 配置 `tsconfig.json`,确保 `compilerOptions.types` 中含有 `@dcloudio/types``@uni-helper/uni-app-types``include` 包含了对应的 `vue` 文件

<details>
<summary>2.0.14 <= <code>Vue Language Features (Volar)</code> & <code>vue-tsc</code></summary>
Expand Down Expand Up @@ -138,7 +138,7 @@ import { ref } from 'vue';
import type { ScrollViewOnScroll } from '@uni-helper/uni-app-types';
const onScroll: ScrollViewOnScroll = (event) => {
...
// ...
};
</script>
Expand All @@ -154,7 +154,7 @@ const onScroll: ScrollViewOnScroll = (event) => {
import { ref } from 'vue';
const onScroll: UniHelper.ScrollViewOnScroll = (event) => {
...
// ...
};
</script>
Expand All @@ -171,7 +171,7 @@ import { ref } from 'vue';
import type { ScrollViewOnScrollEvent } from '@uni-helper/uni-app-types';
const onScroll = (text: string, event: ScrollViewOnScrollEvent) => {
...
// ...
};
</script>
Expand Down

0 comments on commit b5c7b4c

Please sign in to comment.