1.1.3 • Published 4 years ago

@nachmanrosen/dropup v1.1.3

Weekly downloads
-
License
-
Repository
-
Last release
4 years ago

A reusable Vue.js component for a dropup select menu. The component takes two props: options: the options to pass into your dropup, each option must contain a name field. buttonText: the text of your dropup button-clicking the button clears your selection. The component listens to two events, selected and clear.

for example to create a dropup for selecting a specific user or clicking on All Users to clear your selection.

      <drop-up
      :options="myOptions"
      buttonText="All Users"
      @selected="selectUser"
      @clear="clear"
      ></drop-up>
</template>
<script>
      //
    data() {
        return {
            myOptions: [{id:1,name:'Bob'},{id:2,name:'Joe'}],
            selectedUser : {}
        };
    },
      
    methods: {
      selectUser(user) {
          this.selectedUser = user;  
        },
       clear() {
            this.selectedUser = {};
        },
     },
1.1.3

4 years ago

1.1.2

4 years ago

1.1.1

5 years ago

1.1.0

5 years ago

1.0.0

5 years ago