2つのデータ計算コンポーネントを追加する

This commit is contained in:
Mouriya
2024-05-13 06:56:44 +09:00
parent 371e2ee073
commit 64d2cadd82
6 changed files with 247 additions and 120 deletions

View File

@@ -23,9 +23,9 @@
<q-virtual-scroll style="max-height: 160px;" :items="selectedField.fields" separator v-slot="{ item, index }">
<q-item :key="index" dense clickable >
<q-item-section>
<q-item-label>
{{ item.label }}
</q-item-label>
<q-item-label>
{{ item.label }}
</q-item-label>
</q-item-section>
<q-item-section side>
<q-btn round flat size="sm" icon="clear" @click="removeField(index)" />
@@ -128,7 +128,7 @@ interface IAppFields{
export default defineComponent({
inheritAttrs:false,
name: 'FieldInput',
name: 'AppFieldSelect',
components: {
ShowDialog,
FieldSelect,