Zcontact.vue 229 B

123456789101112131415161718
  1. <script setup lang="ts">
  2. </script>
  3. <template>
  4. <button open-type="contact" class="zbutton">
  5. <slot />
  6. </button>
  7. </template>
  8. <style scoped lang="scss">
  9. .zbutton{
  10. all: unset;
  11. &::after{
  12. border: none;
  13. }
  14. }
  15. </style>