mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-06-20 11:09:15 +02:00
19 lines
652 B
Vue
19 lines
652 B
Vue
<template>
|
|
<div class="mb-3">
|
|
<label for="spugpush-templateKey" class="form-label">{{ $t("SpugPush Template Code") }}</label>
|
|
<HiddenInput id="spugpush-templateKey" v-model="$parent.notification.templateKey" :required="true" autocomplete="new-password"></HiddenInput>
|
|
</div>
|
|
<i18n-t tag="p" keypath="More info on:" style="margin-top: 8px;">
|
|
<a href="https://push.spug.cc/guide/plugin/kuma" rel="noopener noreferrer" target="_blank">https://push.spug.cc</a>
|
|
</i18n-t>
|
|
</template>
|
|
|
|
<script>
|
|
import HiddenInput from "../HiddenInput.vue";
|
|
|
|
export default {
|
|
components: {
|
|
HiddenInput,
|
|
},
|
|
};
|
|
</script>
|