Skip to content

Commit

Permalink
Updated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
graphieros committed Jun 24, 2024
1 parent d023c35 commit c10bebf
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,12 @@ const config = ref({
});

// Events

function selectType(menuItem) {
// Triggered when a menu item is selected
console.log("SELECT TYPE", menuItem);
}

function change(item) {
// Triggered whenever an item is changed
console.log("CHANGED", item);
Expand Down Expand Up @@ -163,6 +169,7 @@ function unselected() {
@select="selectItem"
@created="createdItem"
@unselect="unselected"
@selectType="selectType"
>
<!-- Create your available types menu (target the .grid-plan-menu css class to style the menu container)-->
<template #availableType="{ availableType }">
Expand Down

0 comments on commit c10bebf

Please sign in to comment.