Hi! Thanks for this!!
I was just wondering instead of
<q-pdfviewer
:value="true"
:src="src"
:error="onError"
:load="onLoad"
content-class="fit _container"
inner-content-class="fit _container"
/>
isn't it more natural to have error and load be events like so:
<q-pdfviewer
:value="true"
:src="src"
@error="onError"
@load="onLoad"
content-class="fit _container"
inner-content-class="fit _container"
/>
Hi! Thanks for this!!
I was just wondering instead of
isn't it more natural to have
errorandloadbe events like so: