We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d11a76 commit 5469a49Copy full SHA for 5469a49
src/components/AutoQueryGrid.vue
@@ -239,7 +239,7 @@ const props = withDefaults(defineProps<{
239
const emit = defineEmits<{
240
(e: "headerSelected", name:string, ev:Event): void
241
(e: "rowSelected", item:any, ev:Event): void
242
- (e: "pushState", args:any): void
+ (e: "nav", args:any): void
243
}>()
244
245
const client = inject<JsonServiceClient>('client')!
@@ -373,7 +373,7 @@ function canFilter(column:string) {
373
}
374
375
function updateUrl(args:Record<string,any>) {
376
- emit('pushState', args)
+ emit('nav', args)
377
if (!allow('queryString')) return
378
pushState(args)
379
0 commit comments