create-categories #79

Open
jacob1123 wants to merge 31 commits from create-categories into master
Showing only changes of commit 10a870a300 - Show all commits

View File

@ -15,10 +15,13 @@ const visible = ref(false);
function closeDialog() {
visible.value = false;
};
function openDialog() {
emit("open");
visible.value = true;
function openDialog(e : MouseEvent) {
e.stopPropagation();
emit("open");
visible.value = true;
};
function submitDialog() {
const e = {cancel: false};
emit("submit", e);