diff options
Diffstat (limited to 'src/components/notifications/LineNotify.vue')
-rw-r--r-- | src/components/notifications/LineNotify.vue | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/components/notifications/LineNotify.vue b/src/components/notifications/LineNotify.vue new file mode 100644 index 0000000..0f6897f --- /dev/null +++ b/src/components/notifications/LineNotify.vue @@ -0,0 +1,9 @@ +<template> + <div class="mb-3"> + <label for="line-notify-access-token" class="form-label">{{ $t("Access Token") }}</label> + <input id="line-notify-access-token" v-model="$parent.notification.lineNotifyAccessToken" type="text" class="form-control" :required="true"> + </div> + <i18n-t tag="div" keypath="wayToGetLineNotifyToken" class="form-text" style="margin-top: 8px;"> + <a href="https://notify-bot.line.me/" target="_blank">https://notify-bot.line.me/</a> + </i18n-t> +</template> |