2021-09-17 01:07:03 -07:00
|
|
|
<template>
|
|
|
|
<div class="mb-3">
|
2021-09-20 22:02:41 -07:00
|
|
|
<label for="line-channel-access-token" class="form-label">{{ $t("Channel access token") }}</label>
|
2021-09-17 01:07:03 -07:00
|
|
|
<HiddenInput id="line-channel-access-token" v-model="$parent.notification.lineChannelAccessToken" :required="true" autocomplete="one-time-code"></HiddenInput>
|
|
|
|
</div>
|
2021-09-20 22:02:41 -07:00
|
|
|
<i18n-t keypath="Line Developers Console - " tag="div" class="form-text">
|
|
|
|
<b>{{ $t("Basic Settings") }}</b>
|
|
|
|
</i18n-t>
|
2021-09-17 01:07:03 -07:00
|
|
|
<div class="mb-3" style="margin-top: 12px;">
|
|
|
|
<label for="line-user-id" class="form-label">User ID</label>
|
|
|
|
<input id="line-user-id" v-model="$parent.notification.lineUserID" type="text" class="form-control" required>
|
|
|
|
</div>
|
2021-09-20 22:02:41 -07:00
|
|
|
<i18n-t keypath="Line Developers Console - " tag="div" class="form-text">
|
|
|
|
<b>{{ $t("Messaging API") }}</b>
|
|
|
|
</i18n-t>
|
|
|
|
<i18n-t keypath="wayToGetLineChannelToken" tag="div" class="form-text" style="margin-top: 8px;">
|
|
|
|
<a href="https://developers.line.biz/console/" target="_blank">{{ $t("Line Developers Console") }}</a>
|
|
|
|
</i18n-t>
|
2021-09-17 01:07:03 -07:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import HiddenInput from "../HiddenInput.vue";
|
|
|
|
|
|
|
|
export default {
|
|
|
|
components: {
|
|
|
|
HiddenInput,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
</script>
|