-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
+ ref
initialPageCursor
to fix the very first fetching not carrying…
… the cursor route param * fix still showing `<PlaceholderPostList>` when fetching next page - the indicator of the current cursor route param - ref `lastFetchingRoute` since the only usage after 2ed3aa0 that is `scrollToPostListItemByRoute()` no longer requires using different route as of c7571bb @ `<Post>` * replace param `enabled` with `options` for `useApi*()` to allow any caller to override any `Use*QueryOptions` @ index.ts - interface `CursorPaginationQueryParam` due to 2ed3aa0 @ index.d.ts @ api * fix typing definations now exported under files with extension `.d.ts` as of `[email protected]` since 3b65bba @ `shared/echarts.ts` & `<BilibiliVote>` * fix `eslint-disable-next-line` not working since 8ec64b0 @ `<RendererTable>` * fix violation of rule `unicorn/no-abusive-eslint-disable` @ gtag.js & stats.js * fix violation of rule `vue/no-dupe-keys` @ `components/User/<QueryForm>` * add an option `type-literal` for rule `vue/define-emits-declaration` @ .eslintrc.cjs @ fe
- Loading branch information
Showing
10 changed files
with
38 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -507,7 +507,7 @@ const eslintPluginVue = { // as of [email protected] | |
}], | ||
'vue/match-component-import-name': 'error', | ||
'vue/define-props-declaration': 'error', | ||
'vue/define-emits-declaration': 'error', | ||
'vue/define-emits-declaration': ['error', 'type-literal'], | ||
'vue/no-required-prop-with-default': 'error', | ||
'vue/v-on-handler-style': ['error', 'inline-function'], | ||
'vue/multiline-ternary': 'error', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters