mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-06-01 11:22:34 +02:00
16 lines
No EOL
436 B
Vue
16 lines
No EOL
436 B
Vue
<template>
|
|
<div class="mb-3">
|
|
<label for="pushplusplus-sendkey" class="form-label">{{ $t("SendKey") }}</label>
|
|
<HiddenInput id="pushplusplus-sendkey" v-model="$parent.notification.PushPlusPlusSendKey" :required="true" autocomplete="new-password"></HiddenInput>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import HiddenInput from "../HiddenInput.vue";
|
|
|
|
export default {
|
|
components: {
|
|
HiddenInput,
|
|
},
|
|
};
|
|
</script> |