[+] Create constructor for artwork

This commit is contained in:
Hykilpikonna
2019-12-23 09:03:46 -05:00
parent 3359cfaa0a
commit 6f5214764b
+8
View File
@@ -21,6 +21,14 @@
title: string;
format: string;
constructor(date: string, title: string, format: string)
{
this.rawDate = date;
this.title = title;
this.format = format;
}
}
@Component
export default class App extends Vue
{