1.0.2 • Published 5 years ago

vuejs-popup v1.0.2

Weekly downloads
3
License
ISC
Repository
github
Last release
5 years ago

vuejs-popup

A customizable popup for Vue Js

Props

Following props can be passed to this component.

icon ==> Can be passed a fontawesome class, eg, fa-caret

Installation

npm i vuejs-popup

Usage

  • import the component globally or locally.

    import popup from "vuejs-popup";

  • Use the component as:

<popup icon="fa-plus">
        <template v-slot:default>
            //place your contents here.
        </template>
</popup>

Example

        <popup icon="fa-plus">
            <table class="table table-bordered">
              <tr>
                <th>Name</th>
                <th>Address</th>
                <th>Contact</th>
              </tr>
              <tr>
                <td>Random Name</td>
                <td>Random Address</td>
                <td>Random Contact</td>
              </tr>
            </table>
        </popup>

Preview

npm.io

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago