This commit is contained in:
2019-04-16 20:10:19 +00:00
parent d81cfe62b4
commit a35077298b
4 changed files with 72 additions and 11 deletions

View File

@@ -117,7 +117,7 @@
<v-btn small @click="remove">{{ this.$gzlocale.get("Delete")}}</v-btn>
</v-flex>
<v-flex xs6 sm4>
<v-btn small>DUPLICATE?</v-btn>
<v-btn small @click="stubTestClick">TEST BUTTON</v-btn>
</v-flex>
<v-flex xs6 sm4>
<v-btn small @click="submit">{{ this.$gzlocale.get("Save")}}</v-btn>
@@ -245,7 +245,13 @@ export default {
//check rights
//do the delete
alert("STUB: DELETE");
} //end of submit()
}, //end of remove()
stubTestClick() {
this.$gzevent.$emit(
"context-menu-change",
"HI FROM inventory-widget-edit.vue"
);
}
}
};
</script>