Create Email button using Vue.js

  <td align=“center”><button class=“linebutton” @click=“handleLineButtonClick(value)”

                                        :disabled=“isLoading || showEmailToast || showToast”

                                        :class=“{ ‘disable-hover’: isLoading || showEmailToast || showToast }”><i

                                            class=“fa-solid fa-envelope envIconClass”></i></button></td>

<style>

        .linebutton {

            background-color: #d5e0ec;

            border-color: #d5e0ec;

            border-radius: 4px;

        }

        .linebutton:hover {

            transform: scale(1.2);

        }

</style>

Leave a comment

Your email address will not be published. Required fields are marked *