You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
432 B
17 lines
432 B
2 years ago
|
<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="one-time-code"></HiddenInput>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import HiddenInput from "../HiddenInput.vue";
|
||
|
|
||
|
export default {
|
||
|
components: {
|
||
|
HiddenInput,
|
||
|
},
|
||
|
};
|
||
|
</script>
|