--- title: Custom AutoQueryGrid --- Locode lets you easily replace entire Locode Pages with your own, thanks to the reusable [AutoQueryGrid](/vue/autoquerygrid) component in the [Vue Component Library](/vue/) which lets you reuse custom components in your Vue Project templates to replace functionality in Locode, e.g. we can copy the custom [Bookings AutoQueryGrid](https://blazor-vue.web-templates.io/secure/bookings) Vue 3 component in the new [blazor-vue](https://blazor-vue.web-templates.io) Project Template and use it to manage our Bookings in Locode by registering a Vue 3 component with the name: `{DataModel}Page` ## Example That we can auto register with Locode by adding it in our **/wwwroot** folder at `/modules/locode/components/*.mjs`. Which we've added in our Blazor Gallery App, in [/modules/locode/components/BookingPage.mjs](https://github.com/NetCoreApps/BlazorGallery/blob/main/Gallery.Server/wwwroot/modules/locode/components/BookingPage.mjs) containing our custom Bookings AutoQueryGrid component: ```csharp import { inject, ref } from "vue" import { QueryCoupons } from "/types/mjs" export const BookingPage = { template:`