You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
component on the [home page](https://vue-mjs.web-templates.io) which calls its [Hello API](https://vue-mjs.web-templates.io/ui/Hello) on each key press:
605
605
606
606
```js
@@ -668,7 +668,7 @@ let {
668
668
#### setError
669
669
670
670
`setError` can be used to populate client-side validation errors which the
component uses to report an invalid submissions when passwords don't match:
673
673
674
674
```js
@@ -980,7 +980,7 @@ const {
980
980
} =useAuth()
981
981
```
982
982
983
-
This is used in [Bookings.mjs](https://github.com/NetCoreTemplates/vue-mjs/blob/main/MyApp/wwwroot/Pages/Bookings.mjs)
983
+
This is used in [Bookings.mjs](https://github.com/LegacyTemplates/vue-mjs/blob/main/MyApp/wwwroot/Pages/Bookings.mjs)
984
984
to control whether the `<AutoEditForm>` component should enable its delete functionality:
985
985
986
986
```js
@@ -1017,7 +1017,7 @@ function validateSafeName(e) {
1017
1017
#### TypeScript static analysis during development
1018
1018
1019
1019
Whilst the code-base doesn't use TypeScript syntax in its code base directly, it still benefits from TypeScript's language services in IDEs for the included libraries from the TypeScript definitions included in `/lib/typings`, downloaded in
1020
-
[postinstall.js](https://github.com/NetCoreTemplates/vue-mjs/blob/main/MyApp/postinstall.js) after **npm install**.
1020
+
[postinstall.js](https://github.com/LegacyTemplates/vue-mjs/blob/main/MyApp/postinstall.js) after **npm install**.
1021
1021
1022
1022
### Import Maps
1023
1023
@@ -1110,7 +1110,7 @@ We can get SPA-like page loading performance using htmx's [Boosting](https://htm
1110
1110
by converting all anchor tags to use Ajax to load page content into the page body, improving performance from avoiding needing to reload
1111
1111
scripts and CSS in `<head>`
1112
1112
1113
-
This is used in [Header.cshtml](https://github.com/NetCoreTemplates/vue-mjs/blob/main/MyApp/Pages/Shared/Header.cshtml) to **boost** all
1113
+
This is used in [Header.cshtml](https://github.com/LegacyTemplates/vue-mjs/blob/main/MyApp/Pages/Shared/Header.cshtml) to **boost** all
1114
1114
main navigation links:
1115
1115
1116
1116
```html
@@ -1142,7 +1142,7 @@ Whilst not required, the **vue-mjs** template also includes support for pre-rend
1142
1142
1143
1143
Prerendering static content is a popular technique used by JAMStack Apps to improve the performance, reliability and scalability of Web Apps that's able to save unnecessary computation at runtime by generating static content at deployment which can be optionally hosted from a CDN for even greater performance.
1144
1144
1145
-
As such we thought it a valuable technique to include the **vue-mjs** template to show how it can be easily achieved within a Razor Pages App. Since prerendered content is only updated at deployment, it's primarily only useful for static content like [this Blog](https://vue-mjs.web-templates.io/blog/prerendering) which is powered by the static markdown content in [_blog/posts](https://github.com/NetCoreTemplates/vue-mjs/tree/main/MyApp/wwwroot/_blog/posts) whose content is prerendered to `/wwwroot/blog`.
1145
+
As such we thought it a valuable technique to include the **vue-mjs** template to show how it can be easily achieved within a Razor Pages App. Since prerendered content is only updated at deployment, it's primarily only useful for static content like [this Blog](https://vue-mjs.web-templates.io/blog/prerendering) which is powered by the static markdown content in [_blog/posts](https://github.com/LegacyTemplates/vue-mjs/tree/main/MyApp/wwwroot/_blog/posts) whose content is prerendered to `/wwwroot/blog`.
1146
1146
1147
1147
For those interested in utilizing this optimization we've published details on how this works in the
1148
1148
**[Prerendering Razor Pages](https://vue-mjs.web-templates.io/blog/prerendering)** blog post.
0 commit comments