uptime-kuma/src/components/notifications/Feishu.vue

16 lines
706 B
Vue
Raw Normal View History

2021-10-11 09:20:09 +00:00
<template>
<div class="mb-3">
<label for="Feishu-WebHookUrl" class="form-label">{{ $t("Feishu WebHookUrl") }}<span style="color: red;"><sup>*</sup></span></label>
<input id="Feishu-WebHookUrl" v-model="$parent.notification.feishuWebHookUrl" type="text" class="form-control" required>
<div class="form-text">
<p><span style="color: red;"><sup>*</sup></span>{{ $t("Required") }}</p>
</div>
2021-10-14 08:24:03 +00:00
<i18n-t tag="div" keypath="wayToGetTeamsURL" class="form-text">
2021-10-11 09:20:09 +00:00
<a
href="https://www.feishu.cn/hc/zh-CN/articles/360024984973"
target="_blank"
>{{ $t("here") }}</a>
</i18n-t>
</div>
</template>