Use CamelCase for interla components

This commit is contained in:
Matthias 2023-10-10 06:48:21 +02:00
parent 56cb2a698a
commit 20446056be
2 changed files with 3 additions and 3 deletions

View File

@ -45,7 +45,7 @@
> >
<div class="ms-2"> <div class="ms-2">
<plot-config-select></plot-config-select> <PlotConfigSelect></PlotConfigSelect>
</div> </div>
<div class="ms-2 me-0 me-md-1"> <div class="ms-2 me-0 me-md-1">

View File

@ -1,5 +1,5 @@
<template> <template>
<edit-value <EditValue
v-model="plotStore.plotConfigName" v-model="plotStore.plotConfigName"
:allow-edit="allowEdit" :allow-edit="allowEdit"
:allow-add="allowEdit" :allow-add="allowEdit"
@ -17,7 +17,7 @@
@change="plotStore.plotConfigChanged" @change="plotStore.plotConfigChanged"
> >
</b-form-select> </b-form-select>
</edit-value> </EditValue>
</template> </template>
<script setup lang="ts"> <script setup lang="ts">