contact.vue 401 B

123456789101112131415161718192021222324252627282930
  1. <template>
  2. <button class="button" open-type="contact">
  3. <slot />
  4. </button>
  5. </template>
  6. <script>
  7. export default {
  8. name: "contact",
  9. }
  10. </script>
  11. <style scoped>
  12. .button {
  13. width: 100%;
  14. height: 100%;
  15. background: none;
  16. line-height: 12px;
  17. }
  18. .button::after {
  19. border: none;
  20. width: 0;
  21. height: 0;
  22. border-radius: 0;
  23. }
  24. .button {
  25. border-radius: 0;
  26. }
  27. </style>