Action buttons in Vue Card component

11 Jun 20249 minutes to read

You can include Action buttons within the Card and customize them. Action button is a div element with e-card-actions class followed by button tag or anchor tag within the card root element.

  • For adding action buttons you can create button or anchor tag with e-card-btn class within the card action element.

          <div class = "e-card">
              <div class="e-card-actions">
                  <button class="e-card-btn"></button>
                  <a href="#"></a>
              </div>
          </div>
    

Vertical

By default, action buttons positioned in horizontal alignment , and also it can be aligned to show in vertical alignment by adding e-card-vertical class.

    <div class = "e-card">
        <div class="e-card-actions e-card-vertical">
            <button class="e-card-btn">More</button>
            <a href="#">Share</a>
        </div>
    </div>
<template>
    <div id="app">
        <div style="margin: 50px;">
            <div class="e-card" style="max-width:400px">
                <div class="e-card-header-title">Eiffel Tower</div>
                <div class="e-card-content">
                    The Eiffel Tower is acknowledged as the universal symbol of Paris and France.
                </div>
                <div class="e-card-actions">
                    <button class="e-card-btn">
                        <img src="./fav.png" style="height: 18px;width: 18px;" title="Bookmark">
                    </button>
                    <button class="e-card-btn">
                        <img src="./like.png" style="height: 18px;width: 18px;" title="Like">
                    </button>
                    <button class="e-card-btn">
                        <img src="./share.png" style="height: 18px;width: 18px;" title="Share">
                    </button>
                </div>
            </div>
        </div>
        <div style="margin-left: 50px;">
            <div class="e-card" style="max-width:400px">
                <div class="e-card-header-title">Eiffel Tower</div>
                <div class="e-card-content">
                    The Eiffel Tower is acknowledged as the universal symbol of Paris and France.
                </div>
                <div class="e-card-actions e-card-vertical">
                    <button class="e-card-btn">LIKE</button>
                    <button class="e-card-btn">SHARE</button>
                </div>
            </div>
        </div>
    </div>
</template>
<style>
@import '../node_modules/@syncfusion/ej2-base/styles/material.css';
@import '../node_modules/@syncfusion/ej2-vue-layouts/styles/material.css';

#container {
    visibility: hidden;
}

#loader {
    color: #008cff;
    height: 40px;
    left: 45%;
    position: absolute;
    top: 45%;
    width: 30%;
}

.e-card {
    width: 300px
}
</style>
<template>
    <div id="app">
      <div style="margin: 50px;">
        <div class="e-card" style="max-width:400px">
          <div class="e-card-header-title">Eiffel Tower</div>
          <div class="e-card-content">
            The Eiffel Tower is acknowledged as the universal symbol of Paris and France.
          </div>
          <div class="e-card-actions">
            <button class="e-card-btn">
              <img src="./fav.png" style="height: 18px;width: 18px;" title="Bookmark">
            </button>
            <button class="e-card-btn">
              <img src="./like.png" style="height: 18px;width: 18px;" title="Like">
            </button>
            <button class="e-card-btn">
              <img src="./share.png" style="height: 18px;width: 18px;" title="Share">
            </button>
          </div>
        </div>
      </div>
      <div style="margin-left: 50px;">
        <div class="e-card" style="max-width:400px">
          <div class="e-card-header-title">Eiffel Tower</div>
          <div class="e-card-content">
            The Eiffel Tower is acknowledged as the universal symbol of Paris and France.
          </div>
          <div class="e-card-actions e-card-vertical">
            <button class="e-card-btn">LIKE</button>
            <button class="e-card-btn">SHARE</button>
          </div>
        </div>
      </div>
    </div>
  </template>
  <style>
  @import '../node_modules/@syncfusion/ej2-base/styles/material.css';
  @import '../node_modules/@syncfusion/ej2-vue-layouts/styles/material.css';
  
  #container {
    visibility: hidden;
  }
  
  #loader {
    color: #008cff;
    height: 40px;
    left: 45%;
    position: absolute;
    top: 45%;
    width: 30%;
  }
  
  .e-card {
    width: 300px
  }
  </style>

See Also