mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-06 18:41:12 +01:00
24 lines
1.1 KiB
Text
24 lines
1.1 KiB
Text
|
@model BTCPayServer.Models.InvoicingModels.PaymentModel
|
||
|
|
||
|
<template id="lightning-method-checkout-template">
|
||
|
<div class="payment-box">
|
||
|
<small class="qr-text" id="QR_Text_@Model.PaymentMethodId">{{$t("QR_Text")}}</small>
|
||
|
<div class="qr-container my-3" data-clipboard-confirm-element="QR_Text_@Model.PaymentMethodId" :data-clipboard="srvModel.btcAddress">
|
||
|
<qrcode v-if="srvModel.invoiceBitcoinUrlQR" :value="srvModel.invoiceBitcoinUrlQR" tag="div" :options="qrOptions" />
|
||
|
</div>
|
||
|
<a v-if="srvModel.invoiceBitcoinUrl" class="btn btn-primary rounded-pill w-100" target="_top"
|
||
|
:href="srvModel.invoiceBitcoinUrl">{{$t("Pay in wallet")}}</a>
|
||
|
@await Component.InvokeAsync("UiExtensionPoint", new { location = "checkout-lightning-post-content", model = Model })
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
Vue.component('LightningLikeMethodCheckout', {
|
||
|
props: ["srvModel"],
|
||
|
template: "#lightning-method-checkout-template",
|
||
|
components: {
|
||
|
qrcode: VueQrcode
|
||
|
}
|
||
|
});
|
||
|
</script>
|