File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
components/quasar-jsonform/util Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -117,7 +117,7 @@ export const useQuasarControl = <
117117 // console.log('input.control.value.data', input.control.value.data)
118118 if ( isEmpty ( input . control . value ?. data ) || isNull ( input . control . value ?. data ) ) {
119119 input . handleChange ( input . control . value ?. path , input . control . value ?. schema ?. default || undefined )
120- // console.log('trigger default', input.control.value. schema.default || null )
120+ console . log ( 'trigger default' , input . control . value ?. path , input . control . value . schema . default || undefined )
121121 }
122122
123123 // if (typeof input.control.value.data === 'undefined' || input.control.value.data === null && input.control.value.errors) {
Original file line number Diff line number Diff line change @@ -100,6 +100,13 @@ const {
100100} = await useHttp <Response >(' /management/identities' , {
101101 method: ' get' ,
102102 query: queryWithoutRead ,
103+ onResponse(p ) {
104+ console .log (' p' , p .response ?._data ?.total )
105+ pagination .value .rowsNumber = Math .round (Math .random () * 100 )
106+ console .log (' pagination.value' , pagination .value .rowsNumber )
107+ // pagination.value.rowsNumber = p.response?._data?.total || 0
108+
109+ }
103110})
104111
105112if (error .value ) {
You can’t perform that action at this time.
0 commit comments