vers 1.1.6
- risolto problema cors ?!? - notifiche transazioni pendenti OK
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<q-select
|
||||
:behavior="$q.platform.is.ios === true ? 'dialog' : 'menu'"
|
||||
:behavior="$q.platform.is.ios === true ? 'dialog' : 'menu'"
|
||||
rounded
|
||||
outlined
|
||||
v-model="color"
|
||||
@@ -12,19 +12,14 @@
|
||||
map-options
|
||||
>
|
||||
<template v-slot:selected>
|
||||
<q-chip
|
||||
dense
|
||||
square
|
||||
color="white"
|
||||
class="q-my-none q-ml-xs q-mr-none"
|
||||
>
|
||||
<span :style="`color: `+ color">{{ color }}</span>
|
||||
<q-chip dense square color="white" class="q-my-none q-ml-xs q-mr-none">
|
||||
<span :style="`background-color: ${color}; color: white;`">{{ color }}</span>
|
||||
</q-chip>
|
||||
</template>
|
||||
<template v-slot:option="scope">
|
||||
<q-item v-bind="scope.itemProps">
|
||||
<q-item-section>
|
||||
<q-item-label :style="`color: ` + scope.opt.value">{{
|
||||
<q-item-label :style="`background-color: ${scope.opt.label}; color: white;`">{{
|
||||
scope.opt.label
|
||||
}}</q-item-label>
|
||||
</q-item-section>
|
||||
|
||||
Reference in New Issue
Block a user