diff options
Diffstat (limited to 'src/components/notifications/ServerChan.vue')
-rw-r--r-- | src/components/notifications/ServerChan.vue | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/components/notifications/ServerChan.vue b/src/components/notifications/ServerChan.vue new file mode 100644 index 0000000..c7476c2 --- /dev/null +++ b/src/components/notifications/ServerChan.vue @@ -0,0 +1,16 @@ +<template> + <div class="mb-3"> + <label for="serverchan-sendkey" class="form-label">{{ $t("SendKey") }}</label> + <HiddenInput id="serverchan-sendkey" v-model="$parent.notification.serverChanSendKey" :required="true" autocomplete="new-password"></HiddenInput> + </div> +</template> + +<script> +import HiddenInput from "../HiddenInput.vue"; + +export default { + components: { + HiddenInput, + }, +}; +</script> |