You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
597 B
21 lines
597 B
<template>
|
|
<div class="mb-3">
|
|
<label for="push-api-key" class="form-label">{{ $t("API Key") }}</label>
|
|
<HiddenInput id="push-api-key" v-model="$parent.notification.pushAPIKey" :required="true" autocomplete="new-password"></HiddenInput>
|
|
</div>
|
|
|
|
<i18n-t tag="p" keypath="More info on:" style="margin-top: 8px;">
|
|
<a href="https://docs.push.techulus.com" target="_blank">https://docs.push.techulus.com</a>
|
|
</i18n-t>
|
|
</template>
|
|
|
|
<script>
|
|
import HiddenInput from "../HiddenInput.vue";
|
|
|
|
export default {
|
|
components: {
|
|
HiddenInput,
|
|
},
|
|
};
|
|
</script>
|