| 1234567891011121314151617181920212223242526272829303132333435363738 | <template>    <button class="button" :open-type="openType">        <slot />    </button></template><script>export default {    name: "contact",    props: {        openType: {            type: String,            default: "contact"        }    }}</script><style scoped>.button {    width: 100%;    height: 100%;    background: none;    line-height: 12px;    margin: 0;}.button::after {    border: none;    width: 0;    height: 0;    border-radius: 0;    margin: 0;}.button {    border-radius: 0;}</style>
 |