improve notification component, no double template

This commit is contained in:
LouisLam 2021-09-08 10:25:03 +08:00
parent 5ca0dd628d
commit f7562e00c1
2 changed files with 31 additions and 33 deletions

View File

@ -37,7 +37,7 @@
<input id="name" v-model="notification.name" type="text" class="form-control" required> <input id="name" v-model="notification.name" type="text" class="form-control" required>
</div> </div>
<Telegram></Telegram> <Telegram v-if="notification.type === 'telegram'"></Telegram>
<!-- TODO: Convert all into vue components, but not an easy task. --> <!-- TODO: Convert all into vue components, but not an easy task. -->

View File

@ -1,5 +1,4 @@
<template> <template>
<template v-if="$parent.notification.type === name">
<div class="mb-3"> <div class="mb-3">
<label for="telegram-bot-token" class="form-label">Bot Token</label> <label for="telegram-bot-token" class="form-label">Bot Token</label>
<HiddenInput id="telegram-bot-token" v-model="$parent.notification.telegramBotToken" :required="true" autocomplete="one-time-code"></HiddenInput> <HiddenInput id="telegram-bot-token" v-model="$parent.notification.telegramBotToken" :required="true" autocomplete="one-time-code"></HiddenInput>
@ -36,7 +35,6 @@
</p> </p>
</div> </div>
</div> </div>
</template>
</template> </template>
<script> <script>