- dialog confirm delete item

- fix: context-menu (right click) declared only once and using twice using:
  @click.native="$refs.popover.$refs.popup.show()"
This commit is contained in:
Paolo Arena
2019-01-29 23:13:28 +01:00
parent e029f6165e
commit 818a7a4289
20 changed files with 307 additions and 123 deletions

View File

@@ -10,5 +10,12 @@ export interface IGlobalState {
menuCollapse: boolean
leftDrawerOpen: boolean
posts: IPost[]
listatodo: ITodoList[]
}
export interface ITodoList {
namecat: string
description: string
}