Use NSpace itemStyle set lineHeight
This commit is contained in:
parent
2ec3c73271
commit
1f1e735d48
|
@ -93,7 +93,14 @@ watchEffect(() => {
|
||||||
const renderTypeLabel = (option) => {
|
const renderTypeLabel = (option) => {
|
||||||
return h(
|
return h(
|
||||||
NSpace,
|
NSpace,
|
||||||
{ align: 'center', inline: true, size: 3 },
|
{
|
||||||
|
align: 'center',
|
||||||
|
inline: true,
|
||||||
|
size: 3,
|
||||||
|
itemStyle: {
|
||||||
|
lineHeight: 'var(--n-blank-height)',
|
||||||
|
},
|
||||||
|
},
|
||||||
{
|
{
|
||||||
default: () => [
|
default: () => [
|
||||||
h('div', {
|
h('div', {
|
||||||
|
@ -105,11 +112,7 @@ const renderTypeLabel = (option) => {
|
||||||
border: '2px solid white',
|
border: '2px solid white',
|
||||||
},
|
},
|
||||||
}),
|
}),
|
||||||
h('div', {
|
option.value,
|
||||||
style: {
|
|
||||||
'line-height': 'var(--n-blank-height)',
|
|
||||||
}
|
|
||||||
}, option.value),
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue