This commit is contained in:
2021-05-24 22:57:19 +00:00
parent d202d4eb0b
commit 8434a91dc7
4 changed files with 17 additions and 3 deletions

View File

@@ -19,6 +19,13 @@
</v-list-item-icon>
<v-list-item-title>{{ $ay.t("New") }}</v-list-item-title>
</v-list-item>
<v-list-item @click="taskGroupDialog = true">
<v-list-item-icon>
<v-icon>$ayiPlus</v-icon>
</v-list-item-icon>
<v-list-item-title>{{ $ay.t("TaskGroup") }}</v-list-item-title>
</v-list-item>
<v-list-item v-if="canDelete && !isDeleted" @click="deleteItem">
<v-list-item-icon>
<v-icon>$ayiTrashAlt</v-icon>
@@ -285,7 +292,8 @@ export default {
data() {
return {
activeItemIndex: null,
selectedRow: []
selectedRow: [],
taskGroupDialog: false
};
},
props: {

View File

@@ -20,6 +20,7 @@
</v-list-item-icon>
<v-list-item-title>{{ $ay.t("New") }}</v-list-item-title>
</v-list-item>
<v-list-item v-if="canDelete && !isDeleted" @click="deleteItem">
<v-list-item-icon>
<v-icon>$ayiTrashAlt</v-icon>
@@ -458,7 +459,8 @@ export default {
data() {
return {
activeItemIndex: null,
selectedRow: []
selectedRow: [],
test: null
};
},
props: {