djledda.de main
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

GEPaypal.tsx 796 B

2 meses atrás
123456789101112131415161718192021
  1. import { defineComponent } from "vue";
  2. export default defineComponent({
  3. name: "dj-paypal-donate",
  4. setup: () => {
  5. return () => (
  6. <form action="https://www.paypal.com/donate" method="post" target="_top">
  7. <input type="hidden" name="hosted_button_id" value="9NXC6V5HDPGFL" />
  8. <input
  9. id="ppbutton"
  10. type="image"
  11. src="https://www.paypalobjects.com/en_US/i/btn/btn_donate_LG.gif"
  12. name="submit"
  13. title="Thanks for your support!"
  14. alt="Donate with PayPal button"
  15. />
  16. <img alt="" src="https://www.paypal.com/en_DE/i/scr/pixel.gif" width="1" height="1" />
  17. </form>
  18. );
  19. },
  20. });