UI changes to variant row.
This commit is contained in:
@@ -54,8 +54,11 @@
|
|||||||
<template>
|
<template>
|
||||||
<v-card>
|
<v-card>
|
||||||
<v-card-title>
|
<v-card-title>
|
||||||
<v-row>
|
<v-row style="padding-top: 10px">
|
||||||
{{ name }}
|
<v-text-field
|
||||||
|
v-model.trim="name"
|
||||||
|
:readonly="!edit"
|
||||||
|
/>
|
||||||
|
|
||||||
<v-spacer />
|
<v-spacer />
|
||||||
|
|
||||||
@@ -157,6 +160,8 @@
|
|||||||
rows="6"
|
rows="6"
|
||||||
no-resize
|
no-resize
|
||||||
:readonly="!edit"
|
:readonly="!edit"
|
||||||
|
:placeholder="(store.article != null)? ((store.article.ingredients != null)? store.article.ingredients : undefined) : undefined"
|
||||||
|
persistent-placeholder
|
||||||
>
|
>
|
||||||
<template v-slot:counter="{ counter }">
|
<template v-slot:counter="{ counter }">
|
||||||
<span>{{ counter }} von {{ store.ingredientsMaxChars }} Zeichen.</span>
|
<span>{{ counter }} von {{ store.ingredientsMaxChars }} Zeichen.</span>
|
||||||
@@ -174,6 +179,8 @@
|
|||||||
rows="6"
|
rows="6"
|
||||||
no-resize
|
no-resize
|
||||||
:readonly="!edit"
|
:readonly="!edit"
|
||||||
|
:placeholder="(store.article != null)? ((store.article.ingredients != null)? store.article.ingredients : undefined) : undefined"
|
||||||
|
persistent-placeholder
|
||||||
>
|
>
|
||||||
<template v-slot:counter="{ counter }">
|
<template v-slot:counter="{ counter }">
|
||||||
<span>{{ counter }} von {{ store.ingredientsMaxChars }} Zeichen.</span>
|
<span>{{ counter }} von {{ store.ingredientsMaxChars }} Zeichen.</span>
|
||||||
|
|||||||
Reference in New Issue
Block a user