mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-10-01 01:25:45 -04:00
17 lines
432 B
Vue
17 lines
432 B
Vue
|
<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>
|