0
0
Fork 0

feat: define as global dense value

This commit is contained in:
Javier Segarra 2024-10-10 13:56:14 +02:00
parent 3dfb836f8e
commit 2ff99d3faa
3 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,4 @@
import { QInput } from 'quasar';
import setDefault from './setDefault';
setDefault(QInput, 'dense', true);

View File

@ -0,0 +1,4 @@
import { QSelect } from 'quasar';
import setDefault from './setDefault';
setDefault(QSelect, 'dense', true);

View File

@ -1 +1,3 @@
export * from './defaults/qTable';
export * from './defaults/qInput';
export * from './defaults/qSelect';