Skip to content

Commit ea1b32b

Browse files
committed
updates
1 parent 611888d commit ea1b32b

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed

MyApp/_pages/autoquery/text-to-blazor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ Using AutoQuery CRUD UI in a Text to Blazor App
7070
The TypeScript Data Models enable a rapid development experience for defining an App's Data Models which are used
7171
to generate the necessary AutoQuery CRUD APIs to support an Admin UI.
7272

73-
An example of the producitivity of this approach is the effortless support for maintaining a detailed audit history for changes to select tables by inheriting from the `AuditBase` base class, e.g:
73+
An example of the productivity of this approach is the effortless support for maintaining a detailed audit history for changes to select tables by inheriting from the `AuditBase` base class, e.g:
7474

7575
```ts
7676
export class Job extends AuditBase {
Binary file not shown.
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import AudioPlayer from "../podcasts/AudioPlayer.mjs"
2+
import AsciiCinema from '../components/AsciiCinema.mjs'
3+
4+
export default {
5+
install(app) {
6+
},
7+
components: {
8+
AudioPlayer,
9+
AsciiCinema,
10+
},
11+
setup() {
12+
return { }
13+
}
14+
}

0 commit comments

Comments
 (0)