fix: explicitly name all our components to avoid some of the warnings for build:web:serve ...

appears the last warning may be inside Vue itself.  Leaving this alone for now.
This commit is contained in:
Matthew Raymer
2025-07-19 04:41:31 +00:00
parent 051fdd5681
commit ba9b182125
16 changed files with 16 additions and 11 deletions

View File

@@ -34,7 +34,7 @@ import { Component, Emit, Prop, Vue } from "vue-facing-decorator";
* Events:
* - reached-bottom: Emitted when the user scrolls near the bottom of the content
*/
@Component
@Component({ name: "InfiniteScroll" })
export default class InfiniteScroll extends Vue {
/** Distance in pixels from the bottom at which to trigger the reached-bottom event */
@Prop({ default: 200 })