I
Best posts made by IO2021
Latest posts made by IO2021
-
SSR Deployment(Vercel / Netlify)
What I tried is:
- (Import Git repository)-deploy quasar (spa) on (Vercel/Netlify)
Build command: quasar build -m spa
Directory: dist/spa
Result: work
- (Import Git repository)-deploy quasar (ssr) on (Vercel/Netlify)
Build command: quasar build -m ssr
Directory: dist/ssr
Result: not work
Vercel - shows the content of index.js
Netlify
- deploy quasar (ssr) on Vercel with vercel.json
Result: not work (same result)
Does vercel/netlify support ssr deployment? How to make it successfully deployed on vercel/netlify?
thnaks~
- (Import Git repository)-deploy quasar (spa) on (Vercel/Netlify)
-
How to achieve v-ripple effect on table rows?
I hope every row has a ripple effect,
But when I use v-ripple on q-tr,<template v-slot:body="props"> <q-tr v-ripple :props="props" @click="theRow(props)"> <q-td key="a" :props="props"> {{ props.row.a }} </q-td> <q-td key="b" :props="props"> {{ props.row.b }} </q-td> </q-tr> </template>
the effect is not as expected link
How to achieve it? Thanks.
-
RE: Can Qscrollarea be implemented in Qtable?
@metalsadman
Actually, I want to use it in dynamic virtual scroll table (the red part) , but if I try to use the above code, the effect is the blue part.
-
Can Qscrollarea be implemented in Qtable?
I tried adding Qscrollarea code to dynamic virtual scroll table, but it was unsuccessful
<q-scroll-area style="height: 200px; max-width: 300px;"> <q-table class="my-sticky-dynamic" :data="data" :columns="columns" :loading="loading" row-key="index" virtual-scroll :rows-per-page-options="[0]" @virtual-scroll="onScroll" > </q-table> </q-scroll-area>
Can Qscrollarea be implemented in Qtable?