Skip to content

Commit

Permalink
rename SrcVuePage to SrcPage
Browse files Browse the repository at this point in the history
  • Loading branch information
mythz committed Feb 15, 2024
1 parent a216ea1 commit 5924938
Show file tree
Hide file tree
Showing 14 changed files with 13 additions and 12 deletions.
1 change: 1 addition & 0 deletions MyApp.Client/components.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ declare module 'vue' {
RouterView: typeof import('vue-router')['RouterView']
ShellCommand: typeof import('./src/components/ShellCommand.vue')['default']
SrcLink: typeof import('./src/components/SrcLink.vue')['default']
SrcPage: typeof import('./src/components/SrcPage.vue')['default']
SrcVuePage: typeof import('./src/components/SrcVuePage.vue')['default']
VideoGroup: typeof import('./src/components/VideoGroup.vue')['default']
}
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion MyApp.Client/src/pages/admin/bookings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
:visible-from="{ roomNumber:'lg', bookingEndDate:'xl', cost:'md', couponId:'xl', discount:'never' }" />

<div class="my-8 flex justify-center gap-x-4">
<SrcVuePage path="pages/admin/bookings.vue" />
<SrcPage path="pages/admin/bookings.vue" />
</div>
</template>

2 changes: 1 addition & 1 deletion MyApp.Client/src/pages/admin/coupons.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
<AutoQueryGrid type="Coupon" />

<div class="my-8 flex justify-center gap-x-4">
<SrcVuePage path="pages/admin/coupons.vue" />
<SrcPage path="pages/admin/coupons.vue" />
</div>
</template>
2 changes: 1 addition & 1 deletion MyApp.Client/src/pages/admin/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
</div>

<div class="my-8 flex justify-center gap-x-4">
<SrcVuePage path="pages/admin/index.vue" />
<SrcPage path="pages/admin/index.vue" />
</div>
</template>

Expand Down
2 changes: 1 addition & 1 deletion MyApp.Client/src/pages/blog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@
</div>

<div class="my-8 flex justify-center gap-x-4">
<SrcVuePage path="pages/blog.vue" />
<SrcPage path="pages/blog.vue" />
</div>
</template>

Expand Down
2 changes: 1 addition & 1 deletion MyApp.Client/src/pages/bookings-auto.vue
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
<div>
<div class="mt-5 flex justify-between gap-x-4">
<div>
<SrcVuePage path="pages/bookings-auto.vue" />
<SrcPage path="pages/bookings-auto.vue" />
</div>
<div>
<RouterLink class="text-gray-400 hover:text-gray-600" to="/bookings-data">Bookings DataGrid</RouterLink>
Expand Down
2 changes: 1 addition & 1 deletion MyApp.Client/src/pages/bookings-data.vue
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
<div>
<div class="mt-5 flex justify-between gap-x-4">
<div>
<SrcVuePage path="pages/bookings-data.vue" />
<SrcPage path="pages/bookings-data.vue" />
</div>
<div>
<RouterLink class="text-gray-400 hover:text-gray-600" to="/bookings-auto">Bookings AutoQueryGrid</RouterLink>
Expand Down
2 changes: 1 addition & 1 deletion MyApp.Client/src/pages/counter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<PrimaryButton @click="incrementCount">Click me</PrimaryButton>

<div class="mt-8 flex justify-center gap-x-4">
<SrcVuePage path="pages/counter.vue" />
<SrcPage path="pages/counter.vue" />
</div>

</div>
Expand Down
2 changes: 1 addition & 1 deletion MyApp.Client/src/pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
learnMore="https://docs.servicestack.net/vue/" />

<div class="my-8 flex justify-center gap-x-4">
<SrcVuePage path="pages/index.vue" />
<SrcPage path="pages/index.vue" />
</div>

</template>
2 changes: 1 addition & 1 deletion MyApp.Client/src/pages/posts/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
</div>

<div class="my-8 flex justify-center gap-x-4">
<SrcVuePage path="pages/posts/index.vue" />
<SrcPage path="pages/posts/index.vue" />
</div>
</template>

Expand Down
2 changes: 1 addition & 1 deletion MyApp.Client/src/pages/todomvc.vue
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
<SrcLink href="/MyApp.Client/src/stores/todos.ts">
<Iconify icon="noto:pineapple" class="w-5 h-5 inline-flex" />
</SrcLink>
<SrcVuePage path="pages/todomvc.vue" />
<SrcPage path="pages/todomvc.vue" />
</div>
</div>
</template>
Expand Down
2 changes: 1 addition & 1 deletion MyApp.Client/src/pages/videos.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
learnMore="https://docs.servicestack.net/vue/" />

<div class="my-8 flex justify-center gap-x-4">
<SrcVuePage path="pages/videos.vue" />
<SrcPage path="pages/videos.vue" />
</div>

</template>
Expand Down
2 changes: 1 addition & 1 deletion MyApp.Client/src/pages/weather.vue
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<Loading v-else>loading...</Loading>

<div class="mt-8 flex justify-center gap-x-4">
<SrcVuePage path="pages/weather.vue" />
<SrcPage path="pages/weather.vue" />
</div>

</div>
Expand Down

0 comments on commit 5924938

Please sign in to comment.