Skip to content

Commit

Permalink
feat: add stoppropagation to k-confirm
Browse files Browse the repository at this point in the history
  • Loading branch information
50l3r committed Oct 19, 2024
1 parent c5bfd31 commit 4b53736
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "kodama-ui",
"version": "0.32.3",
"version": "0.33.2",
"description": "Kodama UI is a Vue 3 component library that provides a set of components & funcionality to build your application.",
"homepage": "https://50l3r.github.io/kodama-ui",
"keywords": [
Expand Down
6 changes: 3 additions & 3 deletions src/components/feedback/k-confirm/k-confirm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<k-button
color="success"
class="mr-2 cursor-pointer"
@click="ok"
@click.stop="ok"
>
{{ okText }}
</k-button>
Expand All @@ -27,15 +27,15 @@
color="danger"
class="cursor-pointer"
outline
@click="ko"
@click.stop="ko"
>
{{ koText }}
</k-button>
</div>
</div>
</k-modal>

<span @click="open()">
<span @click.stop="open()">
<slot></slot>
</span>
</template>
Expand Down

0 comments on commit 4b53736

Please sign in to comment.